Skip to content

Commit cd6ea1f

Browse files
Add core-js/es7/reflect path for running tests
Somehow this module isn't found. Seems to be a common issue. Adding a TypeScript compilation path solves this.
1 parent 218b16b commit cd6ea1f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tsconfig.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@
2222
],
2323
"baseUrl": ".",
2424
"paths": {
25-
"angular-reactive-validation": ["./dist/angular-reactive-validation"]
25+
"angular-reactive-validation": [
26+
"./dist/angular-reactive-validation"
27+
],
28+
"core-js/es7/reflect": [
29+
"node_modules/core-js/proposals/reflect-metadata",
30+
]
2631
}
2732
}
2833
}

0 commit comments

Comments
 (0)