Skip to content

Commit f95739f

Browse files
chore: exclude integration tests from final build
1 parent a8f1a33 commit f95739f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tsconfig.cjs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"moduleResolution": "node",
66
"outDir": "./dist/cjs"
77
},
8-
"exclude": ["**/*.test.ts", "src/__mocks__/**/*"]
8+
"exclude": ["**/*.test.ts", "src/__mocks__/**/*", "src/integration-tests"]
99
}

tsconfig.prod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"compilerOptions": {
44
"outDir": "./dist/esm"
55
},
6-
"exclude": ["**/*.test.ts", "src/__mocks__/**/*", "src/server/zodTestMatrix.ts"]
6+
"exclude": ["**/*.test.ts", "src/__mocks__/**/*", "src/server/zodTestMatrix.ts", "src/integration-tests"]
77
}

0 commit comments

Comments
 (0)