feat: 完善平台总后台模块
This commit is contained in:
@@ -1,14 +1,44 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2022",
|
||||
"target": "ES2020",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"moduleResolution": "bundler",
|
||||
"strict": true,
|
||||
"jsx": "preserve",
|
||||
"skipLibCheck": true,
|
||||
"allowImportingTsExtensions": false,
|
||||
"noEmit": true,
|
||||
"lib": ["ES2022", "DOM"]
|
||||
"sourceMap": true,
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
},
|
||||
"lib": ["ES2020", "DOM"],
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.vue"]
|
||||
"include": [
|
||||
"src/**/*.d.ts",
|
||||
"src/app/**/*",
|
||||
"src/api/platform.ts",
|
||||
"src/api/user.ts",
|
||||
"src/api/message.ts",
|
||||
"src/assets/**/*",
|
||||
"src/components/**/*",
|
||||
"src/config/**/*",
|
||||
"src/constants/**/*",
|
||||
"src/directive/**/*",
|
||||
"src/hooks/**/*",
|
||||
"src/layout/**/*",
|
||||
"src/locale/**/*",
|
||||
"src/plugins/**/*",
|
||||
"src/router/**/*",
|
||||
"src/store/**/*",
|
||||
"src/types/**/*",
|
||||
"src/utils/**/*",
|
||||
"src/views/login/**/*",
|
||||
"src/views/not-found/**/*",
|
||||
"src/views/platform/**/*",
|
||||
"src/views/redirect/**/*",
|
||||
"config/**/*"
|
||||
],
|
||||
"exclude": ["node_modules", "src/App.vue", "src/mocks/**/*", "src/views/dashboard/**/*", "src/views/exception/**/*", "src/views/form/**/*", "src/views/list/**/*", "src/views/profile/**/*", "src/views/result/**/*", "src/views/user/**/*", "src/views/visualization/**/*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user