2020-08-10 02:43:04 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-08-22 00:12:07 +08:00
|
|
|
"baseUrl": ".",
|
2020-08-10 02:43:04 +08:00
|
|
|
"module": "ESNext",
|
2022-04-10 19:27:30 +08:00
|
|
|
"target": "ESNext",
|
2020-08-10 02:43:04 +08:00
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2022-04-10 19:27:30 +08:00
|
|
|
"jsx": "preserve",
|
2020-08-10 02:43:04 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2021-01-23 15:55:10 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"strictNullChecks": true,
|
2022-06-14 01:12:48 +08:00
|
|
|
"allowJs": true,
|
2020-08-22 00:12:07 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-02-07 00:33:00 +08:00
|
|
|
"types": [
|
2022-05-27 15:48:10 +08:00
|
|
|
"vitest",
|
2021-02-07 00:33:00 +08:00
|
|
|
"vite/client",
|
2022-03-23 22:48:07 +08:00
|
|
|
"vue/ref-macros",
|
2021-07-01 21:45:13 +08:00
|
|
|
"vite-plugin-pages/client",
|
2022-09-22 14:15:24 +08:00
|
|
|
"vite-plugin-vue-component-preview/client",
|
2022-09-26 12:49:58 +08:00
|
|
|
"vite-plugin-vue-layouts/client",
|
2022-11-29 19:43:13 +08:00
|
|
|
"vite-plugin-pwa/client",
|
|
|
|
"unplugin-vue-macros/macros-global"
|
2021-02-07 00:33:00 +08:00
|
|
|
],
|
2020-08-22 00:12:07 +08:00
|
|
|
"paths": {
|
2021-02-05 09:34:09 +08:00
|
|
|
"~/*": ["src/*"]
|
2020-08-22 00:12:07 +08:00
|
|
|
}
|
2020-08-10 02:43:04 +08:00
|
|
|
},
|
2022-11-29 19:43:13 +08:00
|
|
|
"vueCompilerOptions": {
|
|
|
|
"plugins": [
|
|
|
|
"@vue-macros/volar/define-model",
|
|
|
|
"@vue-macros/volar/define-slots"
|
|
|
|
]
|
|
|
|
},
|
2022-02-07 10:11:57 +08:00
|
|
|
"exclude": ["dist", "node_modules", "cypress"]
|
2020-08-22 00:12:07 +08:00
|
|
|
}
|