diff --git a/examples/blank/tsconfig.json b/examples/blank/tsconfig.json index 5400907b43..ebdb7d2f6b 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"] + } +}