mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 06:02:38 +08:00
23 lines
547 B
JSON
23 lines
547 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/cool/modules/*"],
|
|
"/@/*": ["./src/*"],
|
|
"/#/*": ["./types/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|