HuanMengAdmin/admin-client/tsconfig.json
2024-07-18 02:27:50 +08:00

46 lines
915 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"noEmit": true,
"lib": [
"esnext",
"dom"
],
"skipLibCheck": true,
//
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
// 如果您使用 Volar请在 tsconfig.json 中通过 compilerOptions.type 指定全局组件类型。
"types": [
"ant-design-vue/typings/global",
"@types/node",
"vxe-table/types/vxe-table"
],
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/*.tsx",
"src/*.js"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}