12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "compilerOptions": {
- "target": "esnext",
- "jsx": "preserve",
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
- "experimentalDecorators": true,
- "baseUrl": ".",
- "module": "esnext",
- "moduleResolution": "Bundler",
- "paths": {
- "@/*": ["src/*"]
- },
- "types": [
-
- "unplugin-vue-router/client",
-
- ],
- "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",
- ]
- }
|