diff --git a/.babelrc b/babel.config.js similarity index 66% rename from .babelrc rename to babel.config.js index 75cc902..558c191 100644 --- a/.babelrc +++ b/babel.config.js @@ -1,7 +1,11 @@ -{ +module.exports = function (api) { + api.cache(true); + + return { "presets": ["@babel/preset-typescript"], "plugins": [ ["@babel/plugin-transform-runtime"] ], "sourceType": "unambiguous" -} \ No newline at end of file + }; +}