1
0
mirror of https://github.com/chylex/Firefox-SCsCC.git synced 2024-10-17 00:42:46 +02:00
Firefox-SCsCC/babel.config.js
sarics 4a22d9d6a2 change target to Firefox version 60
the latest ESR version
2019-07-22 19:15:34 +02:00

13 lines
182 B
JavaScript

module.exports = {
presets: [
[
'@babel/preset-env', {
targets: {
browsers: 'Firefox >= 60',
},
modules: false,
},
],
],
};