aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Kilian von Pflugk <github@jumoog.io> 2023-09-18 19:28:57 +0200
committerGravatar GitHub <noreply@github.com> 2023-09-18 10:28:57 -0700
commit0800f7017c3a60445562e1e920e648340ebafe4a (patch)
tree03bb007800cf414df84fcf172e67cb7bd6289c91
parent8c1c2a0d9dabcf6195dc27b6d5c871af05acfbc3 (diff)
downloadbun-0800f7017c3a60445562e1e920e648340ebafe4a.tar.gz
bun-0800f7017c3a60445562e1e920e648340ebafe4a.tar.zst
bun-0800f7017c3a60445562e1e920e648340ebafe4a.zip
docs: add missing options from bun init (#5638)
-rw-r--r--docs/typescript.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/typescript.md b/docs/typescript.md
index b764ee50e..0417bc91f 100644
--- a/docs/typescript.md
+++ b/docs/typescript.md
@@ -50,7 +50,10 @@ Bun supports things like top-level await, JSX, and extensioned `.ts` imports, wh
// best practices
"strict": true,
"forceConsistentCasingInFileNames": true,
- "skipLibCheck": true
+ "skipLibCheck": true,
+ "composite": true,
+ "downlevelIteration": true,
+ "allowSyntheticDefaultImports": true
}
}
```