Files
Yi.Admin/Yi.Vue3.x.Vant/tsconfig.json

25 lines
653 B
JSON
Raw Normal View History

2022-10-05 23:54:53 +08:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
2022-10-09 13:30:42 +08:00
"skipLibCheck": true,
// "strictPropertyInitialization": false
2022-10-16 15:54:49 +08:00
"paths": {
"@": ["./src"],
// "@/*": ["./src/*"] // 多加个这个,
"@/*": ["./src/*"]
}
2022-10-05 23:54:53 +08:00
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}