This repository was archived by the owner on Sep 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 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 = {
2828 coverageDirectory : "coverage" ,
2929
3030 // An array of regexp pattern strings used to skip coverage collection
31- coveragePathIgnorePatterns : [ "\\\\ node_modules\\\\ " ] ,
31+ coveragePathIgnorePatterns : [ "node_modules" ] ,
3232
3333 // Indicates which provider should be used to instrument code for coverage
3434 coverageProvider : "v8" ,
Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ const config: Config = {
2929
3030 // An array of regexp pattern strings used to skip coverage collection
3131 coveragePathIgnorePatterns : [
32- "\\\\ node_modules\\\\ " ,
33- "\\\\ coverage\\\\ "
32+ "node_modules" ,
33+ "coverage"
3434 ] ,
3535
3636 // 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 = {
2929
3030 // An array of regexp pattern strings used to skip coverage collection
3131 coveragePathIgnorePatterns : [
32- "\\\\ node_modules\\\\ " ,
33- "\\\\ coverage\\\\ "
32+ "node_modules" ,
33+ "coverage"
3434 ] ,
3535
3636 // Indicates which provider should be used to instrument code for coverage
You can’t perform that action at this time.
0 commit comments