vue-vben-admin/tsconfig.json
Hong Sen Lv 44f2b1c644
fix: ts error (#2955)
Co-authored-by: lvhongsen <lvhongsen@tal.com>
2023-08-11 08:39:24 +08:00

30 lines
652 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@vben/ts-config/vue-app.json",
"compilerOptions": {
"baseUrl": ".",
"declaration": false,
"types": ["vite/client"],
"paths": {
"/@/*": ["src/*"],
"/#/*": ["types/*"],
"@/*": ["src/*"],
"#/*": ["types/*"]
}
},
"include": [
"tests/**/*.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"types/**/*.d.ts",
"types/**/*.ts",
"build/**/*.ts",
"build/**/*.d.ts",
"mock/**/*.ts",
"vite.config.ts"
],
"exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}