vitesse/tsconfig.json

39 lines
923 B
JSON
Raw Permalink Normal View History

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": [
"vitest",
2021-02-07 00:33:00 +08:00
"vite/client",
"vue/ref-macros",
2021-07-01 21:45:13 +08:00
"vite-plugin-pages/client",
"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": {
"~/*": ["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
}