create-bar-project
Version:
This module helps create a base for web application projects.
29 lines (28 loc) β’ 671 B
Plain Text
{
"presets": [
[
"next/babel",
{
"class-properties": {
"loose": true // Without this, Decorating ππ»classππ» property failed
},
// From https://stackoverflow.com/questions/53492923/the-babel-configuration-of-next-js-for-the-latest-browsers
// "preset-env": {
// "useBuiltIns": "entry" // tells the preset to look for browserslist config source
// },
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry"
}
]
]
}
]
],
"plugins": [
["styled-components", { "ssr": true }],
["@babel/plugin-proposal-decorators", { "legacy": true }]
]
}