1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/.babelrc

16 lines
326 B
Plaintext
Raw Normal View History

2016-11-15 08:24:20 +00:00
{
2017-02-16 22:54:55 +00:00
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-flow"
2017-02-16 22:54:55 +00:00
],
2016-11-15 08:24:20 +00:00
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-proposal-class-properties",
2018-08-23 23:57:04 +00:00
["@babel/plugin-transform-runtime", {
"corejs": 2
}]
2018-04-03 12:43:56 +00:00
]
2016-11-15 08:24:20 +00:00
}