From c5949a0337d5ac2177db36dfb331c788f32f9ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Tue, 29 Jun 2021 17:57:19 +0200 Subject: [PATCH] Fixing linting --- front/webpack.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/webpack.config.ts b/front/webpack.config.ts index 04ad8445..44f66564 100644 --- a/front/webpack.config.ts +++ b/front/webpack.config.ts @@ -14,7 +14,7 @@ const buildNpmTypingsForApi = !!process.env.BUILD_TYPINGS; const isProduction = mode === 'production'; const isDevelopment = !isProduction; -let entries: { [key: string]: string; } = {}; +const entries: { [key: string]: string; } = {}; if (!buildNpmTypingsForApi) { entries.main = './src/index.ts'; }