File tree 4 files changed +12
-5
lines changed
4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "image" : " mcr.microsoft.com/devcontainers/universal:2" ,
3
+ "features" : {
4
+ "ghcr.io/devcontainers-extra/features/jest:2" : {},
5
+ "ghcr.io/devcontainers-extra/features/ts-node:1" : {}
6
+ }
7
+ }
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const config: Config = {
28
28
coverageDirectory : "coverage" ,
29
29
30
30
// An array of regexp pattern strings used to skip coverage collection
31
- coveragePathIgnorePatterns : [ "\\\\ node_modules\\\\ " ] ,
31
+ coveragePathIgnorePatterns : [ "node_modules" ] ,
32
32
33
33
// Indicates which provider should be used to instrument code for coverage
34
34
coverageProvider : "v8" ,
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ const config: Config = {
29
29
30
30
// An array of regexp pattern strings used to skip coverage collection
31
31
coveragePathIgnorePatterns : [
32
- "\\\\ node_modules\\\\ " ,
33
- "\\\\ coverage\\\\ "
32
+ "node_modules" ,
33
+ "coverage"
34
34
] ,
35
35
36
36
// Indicates which provider should be used to instrument code for coverage
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ const config: Config = {
29
29
30
30
// An array of regexp pattern strings used to skip coverage collection
31
31
coveragePathIgnorePatterns : [
32
- "\\\\ node_modules\\\\ " ,
33
- "\\\\ coverage\\\\ "
32
+ "node_modules" ,
33
+ "coverage"
34
34
] ,
35
35
36
36
// Indicates which provider should be used to instrument code for coverage
You can’t perform that action at this time.
0 commit comments