aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets')
-rw-r--r--integration/bunjs-only-snippets/tsconfig.json13
1 files changed, 7 insertions, 6 deletions
diff --git a/integration/bunjs-only-snippets/tsconfig.json b/integration/bunjs-only-snippets/tsconfig.json
index fc416b882..05df31d44 100644
--- a/integration/bunjs-only-snippets/tsconfig.json
+++ b/integration/bunjs-only-snippets/tsconfig.json
@@ -1,12 +1,13 @@
{
"compilerOptions": {
"lib": ["ESNext"],
- "allowJs": true,
- "checkJs": true,
- "noEmit": true,
- "moduleResolution": "node",
- "downlevelIteration": true,
"module": "esnext",
- "types": ["../../types/bun"]
+ "target": "esnext",
+ "typeRoots": ["../../types"],
+ "types": ["bun"],
+ "baseUrl": ".",
+ "paths": {
+ "foo/bar": ["baz.js"]
+ }
}
}