mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
/**
|
|
* This file is purely being used for local jest runs, and doesn't participate in the build process.
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
'@babel/plugin-syntax-jsx',
|
|
'@babel/plugin-transform-flow-strip-types',
|
|
],
|
|
presets: [
|
|
['@babel/preset-env', {targets: {node: 'current'}}],
|
|
'@babel/preset-typescript',
|
|
],
|
|
};
|