aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGravatar Hyro <generalkubo@gmail.com> 2022-07-08 11:30:51 +0200
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-07-08 02:32:55 -0700
commit6035ef353ad1c79dbc8f2bede012db9ecca18fa9 (patch)
tree12f8b4778f167ac2c67f07c2bed70bd36f30d491 /examples
parent4bd42e1cf00d410cf0031b4ae8b5e904a182dbf0 (diff)
downloadbun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.tar.gz
bun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.tar.zst
bun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.zip
use tsconfig from readme
Diffstat (limited to 'examples')
-rw-r--r--examples/blank/tsconfig.json12
1 files changed, 8 insertions, 4 deletions
diff --git a/examples/blank/tsconfig.json b/examples/blank/tsconfig.json
index 5400907b4..ebdb7d2f6 100644
--- a/examples/blank/tsconfig.json
+++ b/examples/blank/tsconfig.json
@@ -1,5 +1,9 @@
{
- "compilerOptions": {
- "types": ["bun-types"]
- }
-} \ No newline at end of file
+ "compilerOptions": {
+ "lib": ["ESNext"],
+ "module": "esnext",
+ "target": "esnext",
+ // "bun-types" is the important part
+ "types": ["bun-types"]
+ }
+}