-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbabel.config.js
52 lines (43 loc) · 1.04 KB
/
babel.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"use strict";
// https://stackoverflow.com/questions/57060316/environment-variables-in-babel-config-js
// https://stackoverflow.com/questions/34924581/how-do-you-configure-babel-to-run-with-different-configurations-in-different-env
const presets = [
[
"@babel/preset-env",
{
modules: false,
targets: { node: 'current' }
}
]
];
// Add this to working tests
const env = {
test: {
presets: [['@babel/preset-env']],
plugins: ["@babel/plugin-transform-modules-commonjs"]
}
}
const plugins = [
// [
// require.resolve("babel-plugin-module-resolver"),
// {
// root: ["./src/"],
// alias: {
// // "~": "./src/data",
// // "@files": "./src/files.js",
// // "@utils": "./src/utils.js",
// // "@generator": "./generator"
// // }
// }
// ],
["@babel/plugin-syntax-dynamic-import"],
// ["@babel/proposal-object-rest-spread"]
];
module.exports = function(api) {
api.cache(true);
return {
presets: presets,
plugins: plugins,
env: env
};
};