We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b8fcd4 commit 39a947cCopy full SHA for 39a947c
jest.config.ts
@@ -36,6 +36,7 @@ const config: InitialOptionsTsJest = {
36
testRunner: 'jest-circus/runner',
37
globals: {
38
'ts-jest': {
39
+ tsconfig: '<rootDir>/tsconfig.spec.json',
40
diagnostics: false,
41
isolatedModules: true,
42
},
tsconfig.spec.json
@@ -0,0 +1,7 @@
1
+{
2
+ "extends": "./tsconfig",
3
+ "compilerOptions": {
4
+ "allowJs": false,
5
+ "checkJs": false
6
+ }
7
+}
0 commit comments