diff options
-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 } } ``` |