12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "compilerOptions": {
- "target": "esnext",
- "jsx": "preserve",
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
- "experimentalDecorators": true,
- "baseUrl": ".",
- "module": "esnext",
- "moduleResolution": "Bundler",
- "paths": {
- "@/*": ["src/*"]
- },
- "types": [
- "node",
- "unplugin-vue-router/client",
- "vite-plugin-pwa/client",
- "@intlify/unplugin-vue-i18n/messages"
- ],
- "allowJs": true,
- "strictNullChecks": false,
- "noImplicitAny": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "importHelpers": true,
- "sourceMap": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "verbatimModuleSyntax": true,
- "skipLibCheck": true
- },
- "include": [
- "src/App.vue",
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "tests/**/*.ts",
- "tests/**/*.tsx",
- "src/components.d.ts",
- "src/auto-imports.d.ts",
- "src/typed-router.d.ts",
- "tests/*.ts"
- ]
- }
|