aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-04-03 16:35:09 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-04-03 16:35:09 -0700
commit27ad502119c15f41d3248733b9d778d5a72a55d6 (patch)
treed13d338f6341b39b0c18c47d107e59e7655f809e /integration/bunjs-only-snippets
parente8b2af1eaeabe4919bb239217e1c4b634929eade (diff)
downloadbun-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.js2
-rw-r--r--integration/bunjs-only-snippets/tsconfig.json14
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"]
}
}