52 lines
1.7 KiB
JSON
52 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowArbitraryExtensions": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"checkJs": true,
|
|
"downlevelIteration": false,
|
|
"esModuleInterop": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "vue",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable", "WebWorker"],
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noStrictGenericChecks": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUncheckedSideEffectImports": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": { "@/*": ["./src/*"] },
|
|
"plugins": [{ "name": "@vue/typescript-plugin" }],
|
|
"resolveJsonModule": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"exclude": ["node_modules", "dist/", ".cache"],
|
|
"include": ["src/router/typed-routes.d.ts", "src/env.d.ts", "**/*", "**/*.vue"]
|
|
}
|