mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-03-22 01:34:20 -05:00
16 lines
533 B
JavaScript
16 lines
533 B
JavaScript
module.exports = {
|
|
presets: [
|
|
'@babel/preset-typescript',
|
|
['@babel/preset-env', { loose: true }],
|
|
'@babel/preset-react',
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
['@babel/plugin-proposal-decorators', { legacy: true }],
|
|
['@babel/plugin-proposal-class-properties', { loose: true }],
|
|
['@babel/plugin-transform-computed-properties', { loose: true }],
|
|
],
|
|
}
|