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: 4137a64ef093f68655005d73c8e87d1d57db8bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
	plugins: [
		'@babel/plugin-syntax-dynamic-import'
	],
	presets: [
		[
			'@babel/preset-env',
			{
				modules: process.env.NODE_ENV === 'testing' ? 'commonjs' : undefined,
				useBuiltIns: process.env.NODE_ENV === 'testing' ? 'usage' : 'entry',
				corejs: 3
			}
		]
	]
};