mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-15 19:22:30 +08:00
46 lines
931 B
JSON
46 lines
931 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"~/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"unplugin-vue-macros/macros-global",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@vue-macros/volar/define-models",
|
|
"@vue-macros/volar/define-slots"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|