19yuke2-frontend/tsconfig.json

38 lines
913 B
JSON
Raw Normal View History

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-06-24 16:38:11 +08:00
"moduleResolution": "bundler",
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-06-24 16:38:11 +08:00
// "vite-plugin-vue-layouts/client",
"unplugin-vue-macros/macros-global",
2023-06-24 16:58:26 +08:00
"vite-plugin-vue-meta-layouts/client.d.ts"
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"]
}