ruoyi-plus-soybean/tsconfig.json

25 lines
419 B
JSON
Raw Normal View History

{
2022-03-05 23:20:00 +08:00
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"src/typings/**/*.d.ts",
"src/**/*",
"src/**/*.vue",
2022-03-12 19:32:15 +08:00
"vite.config.*",
2022-03-05 23:20:00 +08:00
"build/**/*.ts",
2022-03-30 01:19:37 +08:00
"mock/**/*.ts",
2022-03-05 23:20:00 +08:00
".env-config.ts",
],
"exclude": [
"/dist/**",
"node_modules"
],
"compilerOptions": {
"baseUrl": ".",
2022-03-05 23:20:00 +08:00
"paths": {
"@/*": ["./src/*"],
"~/*": ["./*"]
2022-03-05 23:20:00 +08:00
},
"types": ["node","unplugin-icons/types/vue","naive-ui/volar"]
2022-03-12 19:32:15 +08:00
}
}