51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowArbitraryExtensions": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"checkJs": true,
|
|
"downlevelIteration": false,
|
|
"erasableSyntaxOnly": true,
|
|
"esModuleInterop": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noStrictGenericChecks": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": false,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictBuiltinIteratorReturn": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"suppressExcessPropertyErrors": false,
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"exclude": ["dist"],
|
|
"include": ["**/*.js", "**/*.ts", "stylelint.config.ts"]
|
|
}
|