diff options
author | 2023-03-15 16:47:45 -0700 | |
---|---|---|
committer | 2023-03-15 16:48:02 -0700 | |
commit | 1f811980c3b2c91bd13219278a51b3277ba5bc52 (patch) | |
tree | 6fed1d4b14e231a6c28a74948decbea0d60e23ec | |
parent | 654ba5b671aee39df93e28f551b20af0c8c82340 (diff) | |
download | bun-1f811980c3b2c91bd13219278a51b3277ba5bc52.tar.gz bun-1f811980c3b2c91bd13219278a51b3277ba5bc52.tar.zst bun-1f811980c3b2c91bd13219278a51b3277ba5bc52.zip |
fix `gc` import from harness
-rw-r--r-- | test/js/bun/resolve/tsconfig.json | 12 | ||||
-rw-r--r-- | test/tsconfig.json | 4 |
2 files changed, 3 insertions, 13 deletions
diff --git a/test/js/bun/resolve/tsconfig.json b/test/js/bun/resolve/tsconfig.json deleted file mode 100644 index 0d4df5a66..000000000 --- a/test/js/bun/resolve/tsconfig.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "../../../../tsconfig.base.json", - "compilerOptions": { - "allowSyntheticDefaultImports": true, - "paths": { - "foo/bar": ["baz.js"], - "@faasjs/*": ["*.js"] - }, - "baseUrl": "." - }, - } -
\ No newline at end of file diff --git a/test/tsconfig.json b/test/tsconfig.json index 2ce6a4d4d..d6be02bff 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -19,7 +19,9 @@ "harness": ["harness.ts"], "mkfifo": ["mkfifo.ts"], "node-harness": ["js/node/harness.ts"], - "deno:harness": ["js/deno/harness.ts"] + "deno:harness": ["js/deno/harness.ts"], + "foo/bar": ["js/bun/resolve/baz.js"], + "@faasjs/*": ["js/bun/resolve/*.js"] } } } |