aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/tsconfig.json')
-rw-r--r--test/bun.js/tsconfig.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/bun.js/tsconfig.json b/test/bun.js/tsconfig.json
new file mode 100644
index 000000000..9a6c36e06
--- /dev/null
+++ b/test/bun.js/tsconfig.json
@@ -0,0 +1,16 @@
+{
+ "compilerOptions": {
+ "lib": ["ESNext"],
+ "module": "esnext",
+ "target": "esnext",
+ "noEmit": true,
+ "allowJs": true,
+ "typeRoots": ["../../types"],
+ "types": ["bun"],
+ "allowSyntheticDefaultImports": true,
+ "baseUrl": ".",
+ "paths": {
+ "foo/bar": ["baz.js"]
+ }
+ }
+}