Files
timeline-frontend/tsconfig.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2025-07-22 22:52:55 +08:00
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"moduleResolution": "node",
"jsx": "react-jsx",
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"paths": {
"@/*": ["./src/*"],
"@@/*": ["./src/.umi/*"],
"@@test/*": ["./src/.umi-test/*"]
}
},
"include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"],
"exclude": [
"node_modules",
"dist",
".umi",
".umi-production",
".umi-test",
"mock",
"tests",
"src/**/__tests__/**",
"src/utils/test/**",
"src/pages/dashboard/**",
"src/pages/form/**",
"src/pages/profile/**",
"src/pages/result/**",
"src/pages/exception/**",
"src/pages/table-list/**",
"src/utils/offline/**",
"src/services/sync/**",
"src/components/SyncStatus/**",
"src/models/sync.ts",
"src/pages/albums/**",
"src/pages/account/statistics/**",
"src/pages/story/offlineService.ts",
"src/services/albums/**",
"src/pages/story/components/TimelineItem/**",
"src/utils.ts"
]
2025-07-22 22:52:55 +08:00
}