You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": [
|
|
|
|
"DOM",
|
|
|
|
"ESNext"
|
|
|
|
],
|
|
|
|
"jsx": "preserve",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"~/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"#/*": [
|
|
|
|
"src/types/*"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"types": [
|
|
|
|
"vitest",
|
|
|
|
"vite/client",
|
|
|
|
"vue/ref-macros",
|
|
|
|
"vite-plugin-pages/client",
|
|
|
|
"vite-plugin-vue-component-preview/client",
|
|
|
|
"vite-plugin-vue-layouts/client",
|
|
|
|
"vite-plugin-pwa/client",
|
|
|
|
"unplugin-vue-macros/macros-global",
|
|
|
|
"naive-ui",
|
|
|
|
"naive-ui/volar"
|
|
|
|
],
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
"@vue-macros/volar/define-models",
|
|
|
|
"@vue-macros/volar/define-slots",
|
|
|
|
"@vue-macros/volar/short-vmodel"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"types/**/*.d.ts",
|
|
|
|
"types/**/*.ts",
|
|
|
|
"build/**/*.ts",
|
|
|
|
"build/**/*.d.ts",
|
|
|
|
"mock/**/*.ts",
|
|
|
|
"vite.config.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"node_modules",
|
|
|
|
"cypress"
|
|
|
|
]
|
|
|
|
}
|