Files
talk/babel.config.js
T
Kiwi c2ffb30431 [next] i18n short number support (#1992)
* feat: Implement i18n short number

* test: fix failing tests
2018-10-12 23:16:13 +00:00

18 lines
417 B
JavaScript

/**
* This is a project wide babel configuration.
* https://babeljs.io/docs/en/config-files#project-wide-configuration
*
* We use this file to apply babel configuration to packages in `node_modules`
* for testing with jest.
*/
module.exports = {
env: {
test: {
presets: [
["@babel/env", { targets: "last 2 versions, ie 11", modules: false }],
"@babel/react",
],
},
},
};