mirror of
https://github.com/gl-inet/glkvm-cloud.git
synced 2026-09-12 05:48:57 +00:00
34 lines
735 B
JSON
34 lines
735 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,
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2015", "ES2017", "ES2018", "DOM", "ES2021"],
|
|
"verbatimModuleSyntax": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@cross/*": [
|
|
"./crossProjectModule/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
]
|
|
}
|
|
}
|