forked from webosbrew/youtube-webos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
39 lines (38 loc) · 813 Bytes
/
babel.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module.exports = (api) => {
api.cache.never();
return {
// Fixes "TypeError: __webpack_require__(...) is not a function"
// https://github.com/webpack/webpack/issues/9379#issuecomment-509628205
// https://babeljs.io/docs/en/options#sourcetype
sourceType: 'unambiguous',
plugins: [
[
'@babel/plugin-transform-runtime',
{
regenerator: false,
version: require('./package.json').dependencies['@babel/runtime']
}
],
[
'polyfill-corejs3',
{
method: 'usage-pure'
}
],
[
'polyfill-regenerator',
{
method: 'usage-pure'
}
]
],
presets: [
[
'@babel/preset-env',
{
bugfixes: true
}
]
]
};
};