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.
61 lines
1.2 KiB
JSON
61 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"~/*": [
|
|
"src/*"
|
|
],
|
|
"#/*": [
|
|
"src/types/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitest",
|
|
"vite/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"vite-plugin-pwa/client",
|
|
"unplugin-vue-macros/macros-global",
|
|
"unplugin-vue-router/client",
|
|
"naive-ui",
|
|
"naive-ui/volar",
|
|
"pinia-plugin-persistedstate"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@vue-macros/volar/define-models",
|
|
"@vue-macros/volar/define-slots",
|
|
"@vue-macros/volar/short-vmodel"
|
|
]
|
|
},
|
|
// "include": [
|
|
// "src/*.ts",
|
|
// "src/**/*.ts",
|
|
// "src/*.d.ts",
|
|
// "src/**/*.d.ts"
|
|
// ],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"cypress"
|
|
]
|
|
}
|