-
Notifications
You must be signed in to change notification settings - Fork 3
/
.babelrc
25 lines (25 loc) · 984 Bytes
/
.babelrc
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
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime",
["module-resolver", {
"alias": {
"@learning.components": "./frontend/learning/components",
"@learning.hooks": "./frontend/learning/hooks",
"@learning.styles": "./frontend/learning/styles",
"@learning.services": "./frontend/learning/services",
"@interfaces": "./frontend/interfaces",
"@assignment.components": "./frontend/assignment/components",
"@assignment.hooks": "./frontend/assignment/hooks",
"@assignment.styles": "./frontend/assignment/styles",
"@assignment.services": "./frontend/assignment/services",
"@utils": "./frontend/utils"
}
}]
]
}