aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/typescript.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/typescript.md b/docs/typescript.md
index 0417bc91f..ca1b5cefd 100644
--- a/docs/typescript.md
+++ b/docs/typescript.md
@@ -31,7 +31,7 @@ Bun supports things like top-level await, JSX, and extensioned `.ts` imports, wh
"types": ["bun-types"],
// enable latest features
- "lib": ["esnext"],
+ "lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
@@ -45,7 +45,6 @@ Bun supports things like top-level await, JSX, and extensioned `.ts` imports, wh
"jsx": "react-jsx", // support JSX
"allowJs": true, // allow importing `.js` from `.ts`
- "esModuleInterop": true, // allow default imports for CommonJS modules
// best practices
"strict": true,