{ "$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", "tsBuildInfoFile": ".cache/tsbuildinfo", "useDefineForClassFields": true, "useUnknownInCatchVariables": true, "verbatimModuleSyntax": true }, "exclude": [ ".cache", "dist/", "node_modules" ], "include": [ "**/*", "**/*.vue", "src/vite-env.d.ts", "src/router/typed-routes.d.ts" ] }