summaryrefslogtreecommitdiffstats
path: root/babel.config.js
blob: 5ad491707c3f852a96cec4cc18a7db68045a6892 (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
	presets: [
		[
			'@babel/preset-env',
			{
				corejs: 3,
				useBuiltIns: 'entry',
			},
		],
	],
}