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