mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
34 lines
910 B
JSON
34 lines
910 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"composite": true,
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedDeclarations": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["node_modules", "dist", "coverage"]
|
|
}
|