Files
novalon-website/tsconfig.json
T
张翔 b71d6aa1d1
ci/woodpecker/push/woodpecker Pipeline failed
fix: 修复TypeScript类型错误并添加企业微信通知
- 修复 useEffect 返回值类型错误 (TS7030)
- 修复未使用的 catch 变量错误
- 排除测试文件的类型检查以减少误报
- 添加企业微信通知功能,支持成功/失败状态推送
- 优化通知格式,包含项目信息、提交信息和构建详情链接
2026-03-28 17:45:30 +08:00

56 lines
1.0 KiB
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts",
"dist/types/**/*.ts",
"dist/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"tests",
"e2e",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
}