Skip to content

Commit 46e9ee2

Browse files
committed
chore: 🔧 update TypeScript configuration
* Added `"types": ["@types/react", "bun-types"]` to `tsconfig.json` * This change ensures proper type definitions are included for React and Bun
1 parent a1d13f1 commit 46e9ee2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
// Some stricter flags (disabled by default)
2323
"noUnusedLocals": false,
2424
"noUnusedParameters": false,
25-
"noPropertyAccessFromIndexSignature": false
25+
"noPropertyAccessFromIndexSignature": false,
26+
27+
"types": ["@types/react", "bun-types"]
2628
}
2729
}

0 commit comments

Comments
 (0)