37 lines
889 B
JSON
37 lines
889 B
JSON
|
|
{
|
||
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
||
|
|
"compilerOptions": {
|
||
|
|
// File Layout
|
||
|
|
"rootDir": "src",
|
||
|
|
"outDir": "dist",
|
||
|
|
|
||
|
|
// Environment Settings
|
||
|
|
// See also https://aka.ms/tsconfig/module
|
||
|
|
"module": "NodeNext",
|
||
|
|
"target": "es2020",
|
||
|
|
"types": ["node"],
|
||
|
|
|
||
|
|
// Other Outputs
|
||
|
|
"sourceMap": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
|
||
|
|
// Stricter Typechecking Options
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"exactOptionalPropertyTypes": false,
|
||
|
|
|
||
|
|
// Recommended Options
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noUncheckedSideEffectImports": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
"esModuleInterop": true,
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "docs", "reports", "index.d.ts"]
|
||
|
|
}
|