diff options
-rw-r--r-- | packages/bun-types/README.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/bun-types/README.md b/packages/bun-types/README.md index 7985ccd98..5aacbb16f 100644 --- a/packages/bun-types/README.md +++ b/packages/bun-types/README.md @@ -22,10 +22,10 @@ Add this to your `tsconfig.json` or `jsconfig.json`: ```jsonc { "compilerOptions": { - "lib": ["esnext"], - "module": "esnext", - "target": "esnext", - "moduleResolution": "node", + "lib": ["ESNext"], + "module": "ESNext", + "target": "ESNext", + "moduleResolution": "Node", // "bun-types" is the important part "types": ["bun-types"] } |