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