mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 02:00:25 +08:00
1262e13067
* chore: update deps * fix: import.meta.globEager 已过期 * docs: fix doc bugs * fix: eslint * fix: lint:prettier * fix: stylelint * chore: update deps * fix: eslint * refactor: accountdetail setup * fix: 'Nullable' is not defined * feat: remove vite-plugin-vue-setup-extend * chore: remove unplugin-vue-define-options * fix(component): pageWrapper use setup closed #2898 * refactor: PageFooter use setup --------- Co-authored-by: jinmao88 <50581550+jinmao88@users.noreply.github.com>
29 lines
626 B
JSON
29 lines
626 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@vben/ts-config/vue-app.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"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"]
|
|
}
|