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

babel.config.js - github.com/gohugoio/hugoTestModule2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6a30597b768efdb2eb9655c254050bd3471289b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
console.warn('In babel.config.js, root.');

module.exports = {
	presets: [
		[
			'@babel/preset-env',
			{
				useBuiltIns: 'entry',
				corejs: 3
			}
		]
	]
};