mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-12-18 10:10:48 +00:00
07c87ed5c5
* Babel upgraded to a version that works with new Node's OpenSSL.
* Various loaders upgraded to match
* Babel config changed as plugin-proposal-private-property-in-object is now official
* Webpack config updated as noEmitOnErrors was renamed to not be a negation
* Webpack config updated as namedModules was renamed to the wider moduleIds
* Ignore the built Webpack output from eslint
Bug: T354943
Bug: T358102
Change-Id: I449f601b8218925d96bfb423fc0f349214d08385
(cherry picked from commit 863c442c32
)
12 lines
199 B
Plaintext
12 lines
199 B
Plaintext
{
|
|
"presets": ["@babel/preset-env"],
|
|
"plugins": [
|
|
["@babel/transform-runtime", {
|
|
"regenerator": true
|
|
}],
|
|
["@babel/plugin-transform-private-property-in-object", {
|
|
"loose": true
|
|
}]
|
|
]
|
|
}
|