mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
|
module.exports = {
|
||
|
babelrcRoots: [
|
||
|
// Keep the root as a root
|
||
|
'.'
|
||
|
],
|
||
|
presets: [
|
||
|
[
|
||
|
'@babel/preset-env',
|
||
|
{
|
||
|
useBuiltIns: 'usage',
|
||
|
corejs: 3
|
||
|
}
|
||
|
]
|
||
|
],
|
||
|
plugins: [
|
||
|
'@babel/plugin-proposal-class-properties',
|
||
|
'@babel/plugin-proposal-private-methods',
|
||
|
'babel-plugin-dynamic-import-polyfill'
|
||
|
]
|
||
|
};
|