forked from imshubhamsingh/file-system-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.babelrc
More file actions
25 lines (25 loc) · 637 Bytes
/
.babelrc
File metadata and controls
25 lines (25 loc) · 637 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
{
"plugins": [
"babel-plugin-styled-components",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime",
[
"module-resolver",
{
"root": "./src",
"alias": {
"@Src": "./src/App.jsx",
"@Components": "./src/components",
"@Pages": "./src/pages",
"@Elements": "./src/elements",
"@Styles": "./src/assets/styles",
"@Utils": "./src/utils",
"@HOC": "./src/hoc",
"@Image": "./src/assets/img",
"@Reducer": "./src/reducers",
"@Action": "./src/actions"
}
}
]
]
}