We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aadbadf commit 2006741Copy full SHA for 2006741
package.json
@@ -88,18 +88,20 @@
88
".(ts|tsx)": "ts-jest"
89
},
90
"moduleFileExtensions": [
91
- "ts",
92
- "tsx",
93
"js",
94
- "json"
+ "json",
+ "ts",
+ "tsx"
95
],
96
"testURL": "http://localhost:4000",
97
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
98
"globals": {
99
"ts-jest": {
100
- "tsConfigFile": "./tsconfig.jest.json"
+ "tsConfig": "./tsconfig.jest.json"
101
}
102
- }
+ },
103
+ "preset": "ts-jest",
104
+ "testMatch": null
105
106
"husky": {
107
"hooks": {
tsconfig.jest.json
@@ -1,5 +1,6 @@
1
{
2
"compilerOptions": {
3
+ "allowJs": true,
4
"jsx": "react",
5
"module": "commonjs",
6
"target": "es6"
0 commit comments