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": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"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",
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"~/*": ["src/*"],
|
|
|
|
"#/*": ["src/types/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
"@vue-macros/volar/define-models",
|
|
|
|
"@vue-macros/volar/define-slots",
|
|
|
|
"@vue-macros/volar/short-vmodel"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": ["dist", "node_modules", "cypress"],
|
|
|
|
// "include": [
|
|
|
|
// // "src/**/*",
|
|
|
|
// // "src/types/**/*.d.ts",
|
|
|
|
// // "src/**/types/**/*.d.ts"
|
|
|
|
// ]
|
|
|
|
}
|