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 e27d8e5 commit f580d81Copy full SHA for f580d81
package.json
@@ -18,16 +18,18 @@
18
},
19
"jest": {
20
"collectCoverageFrom": [
21
- "**/src/**/?*.js"
+ "**/src/**/?*.(js|ts)"
22
],
23
"transform": {
24
+ "^.+\\.ts$": "ts-jest"
25
26
"testMatch": [
- "**/src/**/?*.spec.js"
27
+ "**/src/**/?*.spec.(js|ts)"
28
29
"moduleFileExtensions": [
30
"js",
- "json"
31
+ "json",
32
+ "ts"
33
]
34
35
"dependencies": {},
@@ -41,6 +43,7 @@
41
43
"prettier": "^1.13.7",
42
44
"pretty-quick": "^1.6.0",
45
"rimraf": "^2.6.2",
46
+ "ts-jest": "^23.0.1",
47
"tslint": "^5.11.0",
48
"typescript": "^2.9.2"
49
}
0 commit comments