mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-23 09:40:25 +08:00
4d2fb0cb6f
* refactor: /@/ ==> @/ * chore: '/@/' ==> '@/' and '/#/ '==> '#/' * fix: lint:prettier
28 lines
600 B
JSON
28 lines
600 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/*"]
|
|
}
|
|
},
|
|
"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"]
|
|
}
|