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

babel.config.js - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5191b0f7f9315ffc43dbf70f8eb91e6066d9cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
	plugins: [
		'@babel/plugin-syntax-dynamic-import',
		'@babel/plugin-proposal-class-properties',
	],
	presets: [
		[
			'@babel/preset-env',
			{
				useBuiltIns: false,
			},
		],
	],
}