EasyTier/easytier-gui/tsconfig.json

54 lines
1019 B
JSON
Raw Permalink Normal View History

2024-04-14 23:29:34 +08:00
{
"compilerOptions": {
2024-10-07 15:46:49 +08:00
"composite": true,
2024-05-05 23:10:42 +08:00
"target": "ESNext",
"jsx": "preserve",
"lib": [
2024-10-07 15:46:49 +08:00
"ESNext",
2024-05-05 23:10:42 +08:00
"DOM",
2024-10-07 15:46:49 +08:00
"DOM.Iterable",
"WebWorker"
2024-05-05 23:10:42 +08:00
],
2024-10-07 15:46:49 +08:00
"useDefineForClassFields": true,
2024-05-05 23:10:42 +08:00
"baseUrl": ".",
2024-04-14 23:29:34 +08:00
"module": "ESNext",
"moduleResolution": "bundler",
2024-05-05 23:10:42 +08:00
"paths": {
"~/*": [
"src/*"
]
},
"resolveJsonModule": true,
"types": [
"vite/client",
"vite-plugin-vue-layouts/client",
"unplugin-vue-router/client"
],
2024-05-06 11:08:51 +08:00
"allowImportingTsExtensions": true,
2024-04-14 23:29:34 +08:00
"strict": true,
2024-10-07 15:46:49 +08:00
"noFallthroughCasesInSwitch": true,
2024-04-14 23:29:34 +08:00
"noUnusedLocals": true,
2024-10-07 15:46:49 +08:00
"noUnusedParameters": true,
2024-05-06 11:08:51 +08:00
"noEmit": true,
2024-10-07 15:46:49 +08:00
"allowSyntheticDefaultImports": true,
2024-05-05 23:10:42 +08:00
"isolatedModules": true,
"skipLibCheck": true
},
2024-10-07 15:46:49 +08:00
"include": [
"vite.config.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
2024-05-05 23:10:42 +08:00
"vueCompilerOptions": {
"plugins": [
2024-10-07 15:46:49 +08:00
2024-05-05 23:10:42 +08:00
]
2024-04-14 23:29:34 +08:00
},
2024-05-05 23:10:42 +08:00
"exclude": [
"dist",
"node_modules"
]
2024-05-06 11:08:51 +08:00
}