2021-03-29 00:10:32 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
2021-03-30 18:23:08 +08:00
|
|
|
"moduleResolution": "node",
|
2021-03-29 00:10:32 +08:00
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
2021-03-30 18:23:08 +08:00
|
|
|
"resolveJsonModule": true,
|
2021-04-01 18:36:57 +08:00
|
|
|
"experimentalDecorators": true,
|
2021-03-30 18:23:08 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["esnext", "dom"],
|
2022-07-21 19:07:32 +08:00
|
|
|
"types": ["vite/client", "element-plus/global"],
|
2021-03-31 16:48:59 +08:00
|
|
|
"paths": {
|
2022-04-02 22:50:51 +08:00
|
|
|
"/$/*": ["./src/modules/*"],
|
2021-03-31 16:48:59 +08:00
|
|
|
"/@/*": ["./src/*"],
|
|
|
|
"/#/*": ["./types/*"]
|
|
|
|
}
|
2021-03-29 00:10:32 +08:00
|
|
|
},
|
2022-07-21 19:07:32 +08:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "env.d.ts"],
|
2021-04-01 18:36:57 +08:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2021-03-29 00:10:32 +08:00
|
|
|
}
|