You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
{
|
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
|
|
|
"types": ["vite/client"],
|
|
|
|
|
"baseUrl": ".",
|
feat: setup core architecture (router, pinia, axios, permission)
- Vue Router 4 with navigation guards and dynamic route loading
- Pinia stores for user, permission, and app state management
- Axios API layer with request/response interceptors
- Permission control (v-hasPermi, v-hasRole directives)
- Utility functions (auth, validate, permission)
- Layout component with sidebar, navbar, and breadcrumbs
- Error pages (401, 404) and redirect view
- Login API integration with user store
3 weeks ago
|
|
|
"ignoreDeprecations": "6.0",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
feat: migrate business modules to Vue3
- Migrate system management pages: user, role, menu, dept, dict, notice, post, config
- Migrate booksystem pages: account, book, statistics, operations
- Migrate stocksystem pages: stocks, trends, stockindex, stockbasic
- Create corresponding API modules with TypeScript types
- Update router configuration with all module routes
- Add permission control (v-hasPermi directive) to all pages
3 weeks ago
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/auto-imports.d.ts", "src/components.d.ts", "src/types/global.d.ts"]
|
|
|
|
|
}
|