summaryrefslogtreecommitdiffstats
path: root/babel.config.js
blob: 5496c98580bb132a63ea0809cd5fbffedee5347c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
	plugins: [
		'@babel/plugin-syntax-dynamic-import',
	],
	presets: [
		[
			'@babel/preset-env',
			{
				corejs: 3,
				useBuiltIns: 'entry',
			},
		],
	],
}