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

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