aboutsummaryrefslogtreecommitdiff
path: root/test/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'test/tsconfig.json')
-rw-r--r--test/tsconfig.json34
1 files changed, 9 insertions, 25 deletions
diff --git a/test/tsconfig.json b/test/tsconfig.json
index 67f706cdf..a5e77bf59 100644
--- a/test/tsconfig.json
+++ b/test/tsconfig.json
@@ -1,13 +1,8 @@
{
- "include": [
- ".",
- "../packages/bun-types/index.d.ts"
- ],
+ "include": [".", "../packages/bun-types/index.d.ts"],
"compilerOptions": {
"noEmit": true,
- "lib": [
- "ESNext"
- ],
+ "lib": ["ESNext"],
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "bundler",
@@ -23,25 +18,14 @@
"resolveJsonModule": true,
"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"],
+ "foo/bar": ["js/bun/resolve/baz.js"],
+ "@faasjs/*": ["js/bun/resolve/*.js"]
}
},
+
"exclude": ["bundler/fixtures", "snapshots", "js/deno"]
}