| /** | |
| * This file is purely being used for local jest runs, and doesn't participate in the build process. | |
| */ | |
| ; | |
| module.exports = { | |
| plugins: [ | |
| '@babel/plugin-syntax-jsx', | |
| '@babel/plugin-transform-flow-strip-types', | |
| ['@babel/plugin-transform-class-properties', {loose: true}], | |
| ['@babel/plugin-transform-private-methods', {loose: true}], | |
| '@babel/plugin-transform-classes', | |
| ], | |
| presets: [ | |
| ['@babel/preset-env', {targets: {node: 'current'}}], | |
| '@babel/preset-typescript', | |
| ], | |
| }; | |