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 b5f26e4 commit 198aeebCopy full SHA for 198aeeb
.circleci/config.yml
@@ -26,6 +26,9 @@ jobs:
26
- run:
27
name: Generate code coverage
28
command: ./node_modules/.bin/nyc report --reporter=json
29
+ - run:
30
+ name: moving report to right file
31
+ command: mv coverage/coverage-final.json coverage/coverage.json
32
33
name: send code coverage to codecov
34
command: ./node_modules/.bin/codecov
tsconfig.json
@@ -6,7 +6,8 @@
6
"outDir": "lib",
7
"rootDir": "src",
8
"strict": true,
9
- "target": "es2017"
+ "target": "es2017",
10
+ "sourceMap": true
11
},
12
"include": [
13
"src/**/*"
0 commit comments