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

.eslintrc.js - github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1690d0d862226d1fb5c1ec05b2f1a1d8c776a71 (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',
			{
				targets: {
					browsers: ['last 2 versions', 'ie >= 11']
				}
			}
		]
	]
}