Files
glkvm-cloud/ui/tsconfig.app.json
T
2025-08-29 09:23:56 +08:00

33 lines
698 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.vue",
"node_modules/ant-design-vue/typings/global.d.ts"
],
"exclude": [
"src/**/__tests__/*"
],
"compilerOptions": {
"noImplicitAny": false,
"strictNullChecks": false,
"composite": true,
"noEmit": true,
"lib": ["ES2015", "ES2017", "ES2018", "DOM", "ES2021"],
"verbatimModuleSyntax": false,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
],
"@cross/*": [
"./crossProjectModule/*"
]
},
"types": [
"vite/client",
]
}
}