From 4d8e084a354f24a01cdd7f32430e733dc6be53c2 Mon Sep 17 00:00:00 2001 From: Maciej Ziarkowski Date: Wed, 6 Nov 2019 14:50:43 +0000 Subject: [PATCH] Generate propTypes in all build types --- app/.babelrc | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/app/.babelrc b/app/.babelrc index 1b96c4f3..1578f26a 100644 --- a/app/.babelrc +++ b/app/.babelrc @@ -1,14 +1,13 @@ { - "env": { - "development": { - "plugins": [ - "@babel/plugin-syntax-jsx", - "@babel/plugin-syntax-typescript", - ["babel-plugin-typescript-to-proptypes", { - "implicitChildren": true, - "typeCheck": true - }] - ] - } - } + "plugins": [ + "@babel/plugin-syntax-jsx", + "@babel/plugin-syntax-typescript", + [ + "babel-plugin-typescript-to-proptypes", + { + "implicitChildren": true, + "typeCheck": true + } + ] + ] } \ No newline at end of file