diff options
author | 2023-01-31 14:22:50 -0600 | |
---|---|---|
committer | 2023-01-31 12:22:50 -0800 | |
commit | 79b32f80fa9be5a6c838088068cc5281859f2671 (patch) | |
tree | 1cf61187ac3dd39e864e0a75ca418ee9df6442c6 | |
parent | 4bfdad298148196beb43f1f9fd6fe2bb556cce3f (diff) | |
download | bun-79b32f80fa9be5a6c838088068cc5281859f2671.tar.gz bun-79b32f80fa9be5a6c838088068cc5281859f2671.tar.zst bun-79b32f80fa9be5a6c838088068cc5281859f2671.zip |
Use proper casing for tsconfig values (#1644)
See: https://share.cleanshot.com/gcB3gbXJz6RQk5tx559n
-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"] } |