2023-02-05 18:11:34 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"module": "ESNext",
|
|
|
|
"target": "ESNext",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"skipLibCheck": true,
|
2023-08-14 14:42:59 +08:00
|
|
|
"moduleResolution": "Node",
|
2023-02-05 18:11:34 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"types": [
|
|
|
|
"vitest",
|
|
|
|
"vite/client",
|
|
|
|
"vue/ref-macros",
|
|
|
|
"vite-plugin-vue-component-preview/client",
|
2023-08-12 23:04:22 +08:00
|
|
|
"vite-plugin-vue-layouts/client",
|
2023-07-30 15:29:37 +08:00
|
|
|
"vite-plugin-pages/client",
|
2023-08-13 12:13:09 +08:00
|
|
|
"unplugin-vue-macros/macros-global"
|
2023-02-05 18:11:34 +08:00
|
|
|
],
|
|
|
|
"paths": {
|
2023-07-06 21:05:28 +08:00
|
|
|
"~/*": ["src/*"]
|
2023-02-05 18:11:34 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
"@vue-macros/volar/define-model",
|
|
|
|
"@vue-macros/volar/define-slots"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": ["dist", "node_modules", "cypress"]
|
|
|
|
}
|