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

.babelrc.js - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97cd95604c033e971343f31bf949eab9e8e9c233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
	plugins: [
		['@babel/plugin-syntax-dynamic-import'],
		["@babel/transform-runtime"]
		],
	presets: [
		[
			'@babel/preset-env',
			{
				targets: {
					browsers: ['last 2 versions', 'ie >= 11']
				}
			}
		]
	]
}