From 75f9751e8bdebb8bc8a15142368903c909af3acc Mon Sep 17 00:00:00 2001 From: "ala'n (Alexey Stsefanovich)" Date: Fri, 9 Apr 2021 22:44:56 +0300 Subject: [PATCH] chore: fix build time --- webpack.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 5232cbfc..934f6d53 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -15,8 +15,11 @@ export default { extensions: ['.ts', '.js'] }, module: { + noParse: [ + /\/brace\// + ], rules: [{ - test: /\.(js|ts)$/, + test: /\.tsx?$/, loader: 'ts-loader', options: { compilerOptions: { @@ -44,4 +47,4 @@ export default { filename: '[name].js', assetModuleFilename: '[name].css' } -}; \ No newline at end of file +};