diff options
author | 2023-09-28 14:14:39 -0700 | |
---|---|---|
committer | 2023-09-28 14:14:44 -0700 | |
commit | 640b0b4df91c06a1b84118bcdcac7926cbbe426f (patch) | |
tree | aa57cd86c12709f19ede25809e7fc735da1738f5 /docs/quickstart.md | |
parent | 16be721d8a8b9872378e1604b4d80db4a30f9938 (diff) | |
download | bun-640b0b4df91c06a1b84118bcdcac7926cbbe426f.tar.gz bun-640b0b4df91c06a1b84118bcdcac7926cbbe426f.tar.zst bun-640b0b4df91c06a1b84118bcdcac7926cbbe426f.zip |
Improve docs
Diffstat (limited to 'docs/quickstart.md')
-rw-r--r-- | docs/quickstart.md | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md index c71c3c50f..ae7fc6087 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -42,9 +42,6 @@ const server = Bun.serve({ console.log(`Listening on http://localhost:${server.port} ...`); ``` -<!-- -### TypeScript - If you're using TypeScript, you may see a type error on the `Bun` global. To fix this, install `bun-types`. ```sh @@ -59,7 +56,7 @@ Then add the following line to your `compilerOptions` in `tsconfig.json`. + "types": ["bun-types"] } } -``` --> +``` Run the file from your shell. |