mirror of
https://github.com/EasyTier/EasyTier.git
synced 2024-11-16 03:32:43 +08:00
54 lines
1019 B
JSON
54 lines
1019 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"WebWorker"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"~/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"vite.config.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
],
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
|
|
]
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|