mirror of
https://github.com/WhitestormJS/whs.js.git
synced 2026-01-25 16:08:01 +00:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'.js$': './tools/jestPreprocess.js'
|
|
},
|
|
coveragePathIgnorePatterns: [
|
|
'/node_modules/'
|
|
],
|
|
transformIgnorePatterns: [
|
|
'/node_modules/(?!postprocessing)/'
|
|
]
|
|
};
|