mirror of
https://github.com/innopals/ts-clarity.git
synced 2026-01-12 15:13:42 +08:00
27 lines
698 B
JSON
27 lines
698 B
JSON
{
|
|
"include": [],
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"strict": true,
|
|
"useDefineForClassFields": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"outDir": "dist",
|
|
"target": "ES2021",
|
|
"lib": ["ES2022", "DOM"],
|
|
"skipLibCheck": true
|
|
}
|
|
}
|