2023-09-28 13:50:15 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2024-02-02 21:01:50 +08:00
|
|
|
"noImplicitAny": false,
|
2023-09-28 13:50:15 +08:00
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["esnext", "dom", "WebWorker"],
|
2024-08-08 17:44:07 +08:00
|
|
|
"types": ["element-plus/global", "@cool-vue/vite-plugin/client", "./build/cool/eps.d.ts"],
|
2023-09-28 13:50:15 +08:00
|
|
|
"paths": {
|
|
|
|
"/@/*": ["./src/*"],
|
2024-01-13 23:30:02 +08:00
|
|
|
"/$/*": ["./src/modules/*"],
|
2024-02-27 11:04:01 +08:00
|
|
|
"/#/*": ["./src/plugins/*"],
|
2024-01-13 23:30:02 +08:00
|
|
|
"/~/*": ["./packages/*"]
|
2023-09-28 13:50:15 +08:00
|
|
|
}
|
|
|
|
},
|
2024-08-08 17:44:07 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
2023-09-28 13:50:15 +08:00
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|