json5-jest-new
v2.0.3
Published
jest json5 transformer
Downloads
2
Readme
json5-jest-new
Jest json5 transformer updated to ESM and to work with Jest ≥ 28.
Installation
$ npm i -D json5-jest-new
Jest integration
Please append to package.json
"jest": {
"transform": {
"^.+\\.json5?$": "json5-jest-new"
}
}
or append to jest.config.js
module.exports = {
transform: {
"^.+\\.json5?$": "json5-jest-new"
}
};
Requirements
- node ≥ 6.9.0
Licence
MIT & CC0-1.0