claude-code/tsconfig.json

21 lines
520 B
JSON
Raw Normal View History

2026-03-31 19:22:47 +08:00
{
2026-03-31 20:05:39 +08:00
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": false,
"skipLibCheck": true,
"noEmit": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"types": ["bun"],
"paths": {
"src/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"]
2026-03-31 19:22:47 +08:00
}