aboutsummaryrefslogtreecommitdiff
path: root/test/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'test/tsconfig.json')
-rw-r--r--test/tsconfig.json36
1 files changed, 26 insertions, 10 deletions
diff --git a/test/tsconfig.json b/test/tsconfig.json
index d6be02bff..e32033f8c 100644
--- a/test/tsconfig.json
+++ b/test/tsconfig.json
@@ -1,10 +1,16 @@
{
+ "include": [
+ ".",
+ "../packages/bun-types/index.d.ts"
+ ],
"compilerOptions": {
"noEmit": true,
- "lib": ["ESNext"],
+ "lib": [
+ "ESNext"
+ ],
"module": "ESNext",
"target": "ESNext",
- "moduleResolution": "nodenext",
+ "moduleResolution": "bundler",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
@@ -13,15 +19,25 @@
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"resolveJsonModule": true,
- "types": ["../packages/bun-types"],
"baseUrl": ".",
"paths": {
- "harness": ["harness.ts"],
- "mkfifo": ["mkfifo.ts"],
- "node-harness": ["js/node/harness.ts"],
- "deno:harness": ["js/deno/harness.ts"],
- "foo/bar": ["js/bun/resolve/baz.js"],
- "@faasjs/*": ["js/bun/resolve/*.js"]
+ "harness": [
+ "harness.ts"
+ ],
+ "mkfifo": [
+ "mkfifo.ts"
+ ],
+ "node-harness": [
+ "js/node/harness.ts"
+ ],
+ "deno:harness": [
+ "js/deno/harness.ts"
+ ]
}
- }
+ },
+ "exclude": [
+ "fixtures",
+ "snapshots",
+ "js/deno"
+ ]
}