UNPKG

287 BJavaScriptView Raw
1const MIN_BABEL_VERSION = 7;
2
3module.exports = (api) => {
4 api.assertVersion(MIN_BABEL_VERSION);
5 api.cache(true);
6
7 return {
8 presets: [
9 [
10 '@babel/preset-env',
11 {
12 targets: {
13 node: '6.9.0',
14 },
15 },
16 ],
17 ],
18 };
19};