diff options
author | 2023-09-18 19:28:57 +0200 | |
---|---|---|
committer | 2023-09-18 10:28:57 -0700 | |
commit | 0800f7017c3a60445562e1e920e648340ebafe4a (patch) | |
tree | 03bb007800cf414df84fcf172e67cb7bd6289c91 | |
parent | 8c1c2a0d9dabcf6195dc27b6d5c871af05acfbc3 (diff) | |
download | bun-0800f7017c3a60445562e1e920e648340ebafe4a.tar.gz bun-0800f7017c3a60445562e1e920e648340ebafe4a.tar.zst bun-0800f7017c3a60445562e1e920e648340ebafe4a.zip |
docs: add missing options from bun init (#5638)
-rw-r--r-- | docs/typescript.md | 5 |
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 } } ``` |