-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.babel.node.js
More file actions
29 lines (29 loc) · 749 Bytes
/
Copy path.babel.node.js
File metadata and controls
29 lines (29 loc) · 749 Bytes
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
module.exports = ({ path }) => ({
presets: [
[
"@babel/preset-env",
{
targets: {
node: "12"
}
}
],
"@babel/preset-typescript"
],
plugins: [
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-proposal-object-rest-spread", { useBuiltIns: true }],
["@babel/plugin-transform-runtime", { useESModules: false }],
["babel-plugin-dynamic-import-node"],
["babel-plugin-lodash"],
[
"babel-plugin-module-resolver",
{
cwd: path,
alias: {
"~": "./src"
}
}
]
]
});