mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
f2de20ce51
chore: tweaks config chore: ignore build chore: tweak deps
24 lines
423 B
JavaScript
24 lines
423 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
targets: {
|
|
node: '18',
|
|
},
|
|
useBuiltIns: false,
|
|
modules: 'commonjs',
|
|
},
|
|
],
|
|
'@babel/preset-react',
|
|
'@babel/preset-typescript',
|
|
'@babel/preset-flow',
|
|
],
|
|
plugins: ['@babel/plugin-transform-strict-mode'],
|
|
env: {
|
|
test: {
|
|
presets: ['@react-native/babel-preset'],
|
|
},
|
|
},
|
|
};
|