mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
31 lines
964 B
JSON
31 lines
964 B
JSON
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"targets":
|
|
{
|
|
"node": "6.10",
|
|
"esmodules": true
|
|
}
|
|
}
|
|
],
|
|
[
|
|
"@babel/preset-react",
|
|
{
|
|
"pragma": "dom", // default pragma is React.createElement (only in classic runtime)
|
|
"pragmaFrag": "DomFrag", // default is React.Fragment (only in classic runtime)
|
|
"throwIfNamespace": false, // defaults to true
|
|
"runtime": "classic" // defaults to classic
|
|
// "importSource": "custom-jsx-library" // defaults to react (only in automatic runtime)
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-syntax-top-level-await",
|
|
"@babel/plugin-proposal-object-rest-spread",
|
|
"@babel/plugin-syntax-jsx",
|
|
"@babel/plugin-proposal-class-properties"
|
|
]
|
|
}
|