mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
25 lines
626 B
JSON
25 lines
626 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom", "WebWorker"],
|
|
"types": ["vite/client", "element-plus/global"],
|
|
"paths": {
|
|
"/@/*": ["./src/*"],
|
|
"/$/*": ["./src/modules/*"],
|
|
"/#/*": ["./types/*"],
|
|
"/~/*": ["./packages/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|