51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
|
"display": "Base",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": false,
|
||
|
|
"target": "ESNext",
|
||
|
|
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
|
||
|
|
"module": "ESNext",
|
||
|
|
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"inlineSources": false,
|
||
|
|
"noEmit": true,
|
||
|
|
"removeComments": true,
|
||
|
|
"sourceMap": false,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"preserveWatchOutput": true
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"**/node_modules/**",
|
||
|
|
"**/dist/**",
|
||
|
|
"**/.turbo/**",
|
||
|
|
"**/coverage/**",
|
||
|
|
"**/build/**",
|
||
|
|
"**/out/**",
|
||
|
|
"**/.nyc_output/**",
|
||
|
|
"**/temp/**",
|
||
|
|
"**/tmp/**",
|
||
|
|
"**/*.spec.ts",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/__tests__/**"
|
||
|
|
]
|
||
|
|
}
|