Skip to content

Commit 5c08ac3

Browse files
committed
build: set skipLibCheck... ts-jest and jest aren't playing nicely
I'm not exactly sure why as `ts-jest` looks to be implementing Jest's `SyncTransform` type properly.
1 parent 308613b commit 5c08ac3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
"compilerOptions": {
66
"allowJs": true,
77
"checkJs": true,
8-
"emitDeclarationOnly": true,
98
"declarationMap": true,
9+
"emitDeclarationOnly": true,
1010
"outDir": "../dist",
11-
"rootDir": "."
11+
"rootDir": ".",
12+
"skipLibCheck": true
1213
}
1314
}

0 commit comments

Comments
 (0)