diff options
author | 2022-07-08 11:30:51 +0200 | |
---|---|---|
committer | 2022-07-08 02:32:55 -0700 | |
commit | 6035ef353ad1c79dbc8f2bede012db9ecca18fa9 (patch) | |
tree | 12f8b4778f167ac2c67f07c2bed70bd36f30d491 /examples | |
parent | 4bd42e1cf00d410cf0031b4ae8b5e904a182dbf0 (diff) | |
download | bun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.tar.gz bun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.tar.zst bun-6035ef353ad1c79dbc8f2bede012db9ecca18fa9.zip |
use tsconfig from readme
Diffstat (limited to 'examples')
-rw-r--r-- | examples/blank/tsconfig.json | 12 |
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"] + } +} |