forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.babelrc
More file actions
28 lines (28 loc) · 1016 Bytes
/
.babelrc
File metadata and controls
28 lines (28 loc) · 1016 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
{
"presets": ["env", "stage-1", "react"],
"plugins": [
"transform-decorators-legacy",
"transform-object-rest-spread",
"transform-class-properties",
"babel-plugin-syntax-dynamic-import",
[
"module-resolver",
{
"root": [
"./src/javascript"
],
"alias": {
"_common" : "./src/javascript/_common",
"App" : "./src/javascript/app_2/App",
"Assets" : "./src/javascript/app_2/Assets",
"Constants": "./src/javascript/app_2/Constants",
"Modules" : "./src/javascript/app_2/Modules",
"Services" : "./src/javascript/app_2/Services",
"Stores" : "./src/javascript/app_2/Stores",
"Utils" : "./src/javascript/app_2/Utils",
"Images" : "./src/images/"
}
}
]
]
}