mirror of
https://github.com/zhigang1992/react.git
synced 2026-06-12 00:25:17 +08:00
* docs: add link to GH discussions * chore: upgrade deps * chore: update code style for prettier * chore: release v2.1.0-canary.3 * chore(deps): upgrade babel * chore: replace enzyme adapter with community repo to fit react.17 * test: updatee snapshots for auto typesetting * test(config): ignore unexported parts of the tools
20 lines
392 B
JavaScript
20 lines
392 B
JavaScript
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
bugfixes: true,
|
|
modules: false,
|
|
},
|
|
],
|
|
'@babel/react',
|
|
'@babel/typescript',
|
|
],
|
|
plugins: [
|
|
'styled-jsx/babel',
|
|
['@babel/plugin-proposal-object-rest-spread', { loose: true }],
|
|
['@babel/plugin-transform-runtime', { useESModules: true }],
|
|
],
|
|
ignore: [/@babel[\\|/]runtime/],
|
|
}
|