mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 06:08:33 +08:00
16 lines
377 B
JavaScript
16 lines
377 B
JavaScript
const config = {
|
|
presets: [
|
|
'@babel/preset-react',
|
|
['@babel/preset-env', {
|
|
modules: false,
|
|
}],
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
['@babel/plugin-proposal-decorators', {'legacy': true }],
|
|
['@babel/plugin-transform-class-properties', { 'loose': false }]
|
|
],
|
|
};
|
|
|
|
export default config; |