mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 08:47:53 +08:00
c2ffb30431
* feat: Implement i18n short number * test: fix failing tests
18 lines
417 B
JavaScript
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",
|
|
],
|
|
},
|
|
},
|
|
};
|