Browse Source

Remove unneeded babel config variable

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
John Molakvoæ (skjnldsv) 4 years ago
parent
commit
1f805c5dc2
1 changed files with 5 additions and 6 deletions
  1. 5 6
      babel.config.js

+ 5 - 6
babel.config.js

@@ -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,
-			}
-		]
-	]
-};
+			},
+		],
+	],
+}