-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #414 from KaiVolland/geostyler-style-5
Adaptions to work with modified geostyler-style parser output
- Loading branch information
Showing
6 changed files
with
891 additions
and
18,415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
const testRegex = 'src/.*\\.spec.ts$'; | ||
|
||
module.exports = { | ||
'moduleFileExtensions': [ | ||
moduleFileExtensions: [ | ||
'ts', | ||
'js' | ||
], | ||
'transformIgnorePatterns': [ | ||
transformIgnorePatterns: [ | ||
'node_modules/(?!(geostyler-style)/)' | ||
], | ||
'testRegex': testRegex, | ||
'collectCoverageFrom': [ | ||
testRegex: testRegex, | ||
collectCoverageFrom: [ | ||
'src/*.ts', | ||
'!' + testRegex | ||
] | ||
], | ||
moduleNameMapper: { | ||
// to work with npm link on geostyler-style | ||
'core-js': '<rootDir>/node_modules/core-js' | ||
} | ||
}; |
Oops, something went wrong.