diff options
Diffstat (limited to 'integration/bunjs-only-snippets')
-rw-r--r-- | integration/bunjs-only-snippets/fs.test.js | 2 | ||||
-rw-r--r-- | integration/bunjs-only-snippets/tsconfig.json | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/integration/bunjs-only-snippets/fs.test.js b/integration/bunjs-only-snippets/fs.test.js index 8b5e0c867..660289152 100644 --- a/integration/bunjs-only-snippets/fs.test.js +++ b/integration/bunjs-only-snippets/fs.test.js @@ -1,4 +1,4 @@ -import { describe, it, expect } from "vitest"; +import { describe, it, expect } from "bun:test"; import { mkdirSync, existsSync, diff --git a/integration/bunjs-only-snippets/tsconfig.json b/integration/bunjs-only-snippets/tsconfig.json index e76eae4ac..fc416b882 100644 --- a/integration/bunjs-only-snippets/tsconfig.json +++ b/integration/bunjs-only-snippets/tsconfig.json @@ -1,10 +1,12 @@ { "compilerOptions": { - "lib": ["esnext", { "replace": "node", "with": "dom" }], - "baseUrl": ".", - "paths": { - "foo/bar": ["baz.js"] - }, - "typeRoots": ["./node_modules/@types"] + "lib": ["ESNext"], + "allowJs": true, + "checkJs": true, + "noEmit": true, + "moduleResolution": "node", + "downlevelIteration": true, + "module": "esnext", + "types": ["../../types/bun"] } } |