Skip to content

Commit e4663fc

Browse files
fix: merge tsconfig.base.json into tsconfig.json with full compiler options
The cherry-pick from 637c908 dropped jsx/strict/etc settings when removing tsconfig.base.json. This commit restores them in a single tsconfig.json. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dbc7f02 commit e4663fc

2 files changed

Lines changed: 11 additions & 15 deletions

File tree

tsconfig.base.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

tsconfig.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"compilerOptions": {
3+
"target": "ESNext",
4+
"module": "ESNext",
5+
"moduleResolution": "bundler",
6+
"jsx": "react-jsx",
7+
"strict": true,
8+
"skipLibCheck": true,
9+
"noEmit": true,
10+
"esModuleInterop": true,
11+
"allowSyntheticDefaultImports": true,
12+
"resolveJsonModule": true,
13+
"types": ["bun", "@types/node"],
314
"paths": {
415
"src/*": ["./src/*"],
516
"@claude-code-best/builtin-tools/*": ["./packages/builtin-tools/src/*"],

0 commit comments

Comments
 (0)