remark-lint/tsconfig.json

18 lines
396 B
JSON
Raw Normal View History

2021-08-12 15:01:59 +03:00
{
"include": ["script/**/*.js", "test.js"],
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020"],
"module": "ES2020",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"strict": true
}
}