EasyTier/easytier-gui/tsconfig.json

46 lines
931 B
JSON
Raw Permalink Normal View History

2024-04-14 23:29:34 +08:00
{
"compilerOptions": {
2024-05-05 23:10:42 +08:00
"target": "ESNext",
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"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-macros/macros-global",
"unplugin-vue-router/client"
],
2024-05-06 11:08:51 +08:00
"allowImportingTsExtensions": true,
2024-05-05 23:10:42 +08:00
"allowJs": true,
2024-04-14 23:29:34 +08:00
"strict": true,
2024-05-05 23:10:42 +08:00
"strictNullChecks": true,
2024-04-14 23:29:34 +08:00
"noUnusedLocals": true,
2024-05-06 11:08:51 +08:00
"noEmit": true,
2024-05-05 23:10:42 +08:00
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots"
]
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
}