From dd1c9532f62bc41e759cf1151569d164d0d593b6 Mon Sep 17 00:00:00 2001 From: Louis Lo Date: Tue, 12 Jan 2021 17:55:14 -0800 Subject: [PATCH] Migrate .babelrc to babel.config.js --- .babelrc | 5 ----- babel.config.js | 3 +++ 2 files changed, 3 insertions(+), 5 deletions(-) delete mode 100644 .babelrc create mode 100644 babel.config.js diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 6f80120055..0000000000 --- a/.babelrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "plugins": [ - "transform-class-properties" - ] -} diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000000..aff813ce5a --- /dev/null +++ b/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + plugins: ["transform-class-properties"], +};