summaryrefslogtreecommitdiffstats
path: root/.babelrc.js
blob: 21cf7022fd3dccc463cf3edafc0a5645dd1c4608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = {
	presets: [
		[
			'@babel/preset-env',
			{
				targets: {
					browsers: ['last 2 versions', 'ie >= 11']
				}
			}
		]
	]
}