From b7c16977557280f32356f644777dc762a47d501e Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 29 Jan 2022 02:02:45 -0500 Subject: [PATCH] Re-enables eslint caching --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 594f374..afe48d2 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -63,7 +63,7 @@ function getExtensionConfig(target, mode, env) { enabled: true, files: 'src/**/*.ts', options: { - // cache: true, + cache: true, cacheLocation: path.join( __dirname, target === 'webworker' ? '.eslintcache.browser' : '.eslintcache', @@ -303,7 +303,7 @@ function getWebviewsConfig(mode, env) { eslint: { enabled: true, files: path.join(basePath, '**', '*.ts'), - // options: { cache: true }, + options: { cache: true }, }, formatter: 'basic', typescript: {