Remove unneeded babel config variable

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2020-04-02 10:53:41 +02:00
parent c1368b8696
commit 1f805c5dc2
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
1 changed files with 5 additions and 6 deletions

View File

@ -1,16 +1,15 @@
module.exports = {
plugins: [
'@babel/plugin-syntax-dynamic-import',
['@babel/plugin-proposal-class-properties', { loose: true }]
['@babel/plugin-proposal-class-properties', { loose: true }],
],
presets: [
[
'@babel/preset-env',
{
modules: false,
corejs: 3,
useBuiltIns: false,
}
]
]
};
},
],
],
}