diff options
-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"] + } +} |