video-flow-b/tsconfig.json
2025-09-06 16:58:21 +08:00

37 lines
833 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
},
"maxNodeModuleJsDepth": 1,
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"app/types/global.d.ts" // 显式包含全局声明文件
],
"exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts", ".next"]
}