mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
27 lines
819 B
JSON
27 lines
819 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"incremental": true, // 只编译修改过的文件,这个时候会生成tsconfig.tsbuildinfo,下次编译的时候会进行对比只编译修改过的文件
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
// "sourceMap": true,
|
|
"removeComments": false, //编译删除注释
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["node", "vite/client", "naive-ui/volar"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|