diff options
author | 2022-04-03 16:35:09 -0700 | |
---|---|---|
committer | 2022-04-03 16:35:09 -0700 | |
commit | 27ad502119c15f41d3248733b9d778d5a72a55d6 (patch) | |
tree | d13d338f6341b39b0c18c47d107e59e7655f809e /integration/bunjs-only-snippets | |
parent | e8b2af1eaeabe4919bb239217e1c4b634929eade (diff) | |
download | bun-27ad502119c15f41d3248733b9d778d5a72a55d6.tar.gz bun-27ad502119c15f41d3248733b9d778d5a72a55d6.tar.zst bun-27ad502119c15f41d3248733b9d778d5a72a55d6.zip |
cleanup a few things
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"] } } |