zcash-grant-system/frontend/.babelrc

30 lines
567 B
Plaintext
Raw Normal View History

2018-09-10 09:55:26 -07:00
{
"presets": ["next/babel", "@zeit/next-typescript/babel"],
"env": {
"development": {
"plugins": ["inline-dotenv"]
},
"production": {
"plugins": ["transform-inline-environment-variables"]
}
},
"plugins": [
["import", { "libraryName": "antd", "style": false }],
[
"module-resolver",
{
"root": ["client"],
"extensions": [".js", ".tsx", ".ts"]
}
],
[
"styled-components",
{
"ssr": true,
"displayName": true,
"preprocess": false
}
]
]
}