Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.babelrc.js - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57d227efaa46844b3ce7a6b852cf003fe52c14e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
	presets: [
		[
			'@babel/preset-env',
			{
				useBuiltIns: 'usage',
				corejs: 3,
				targets: {
					browsers: ['last 2 versions', 'ie >= 11'],
				},
			},
		],
	],
}