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: 004c14b5119072714801f408612e4041938358c8 (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', { loose: true }]
	],
	presets: [
		[
			'@babel/preset-env',
			{
				modules: false
			}
		]
	]
};