All checks were successful
test/timeline-frontend/pipeline/head This commit looks good
refactor: 重构类型定义和组件结构 fix: 修复通知和权限判断逻辑 style: 优化样式和布局 docs: 更新类型注释和文档 chore: 清理无用代码和文件 perf: 优化图片和视频加载性能 test: 添加分享功能测试用例 build: 更新依赖和构建配置 ci: 调整CI配置和脚本
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"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"
|
|
]
|
|
}
|