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

.babelrc.js - github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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']
				}
			}
		]
	]
}