2026-07-26 18:06:14 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-07-27 00:18:42 +08:00
|
|
|
"target": "ES2020",
|
2026-07-26 18:06:14 +08:00
|
|
|
"module": "ESNext",
|
2026-07-27 00:18:42 +08:00
|
|
|
"moduleResolution": "bundler",
|
2026-07-26 18:06:14 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"jsx": "preserve",
|
2026-07-27 00:18:42 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
|
},
|
|
|
|
|
"lib": ["ES2020", "DOM"],
|
|
|
|
|
"skipLibCheck": true
|
2026-07-26 18:06:14 +08:00
|
|
|
},
|
2026-07-27 00:18:42 +08:00
|
|
|
"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/**/*"]
|
2026-07-26 18:06:14 +08:00
|
|
|
}
|