mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
30 lines
705 B
JSON
30 lines
705 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",
|
|
"@cool-vue/vite-plugin/client",
|
|
"./build/cool/eps.d.ts"
|
|
],
|
|
"paths": {
|
|
"/@/*": ["./src/*"],
|
|
"/$/*": ["./src/modules/*"],
|
|
"/#/*": ["./src/plugins/*"],
|
|
"/~/*": ["./packages/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "env.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|