status-tutorials/.babelrc

31 lines
686 B
Plaintext
Raw Permalink Normal View History

2020-04-18 17:02:31 +00:00
{
"presets": ["next/babel"],
"plugins": [
[
"module-resolver",
{
"root": ["./"],
"alias": {
"@Actions": "./src/Actions",
"@Components": "./src/Components",
"@Definitions": "./src/Definitions",
"@Interfaces": "./src/Interfaces",
"@Pages": "./pages",
"@Reducers": "./src/Redux/Reducers",
"@Redux": "./src/Redux",
"@Services": "./src/Services",
"@Server": "./server",
"@Static": "./public/static",
"@Styled": "./src/Styled"
}
}
],
[
"babel-plugin-styled-components",
{
"ssr": true
}
]
]
}