From 69accb6992d36a15a859a70062406e558255fb71 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 6 Feb 2022 01:52:17 -0500 Subject: [PATCH] Disables eslint caching -- causes too many issues --- webpack.config.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index afe48d2..f2756d4 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -63,11 +63,11 @@ function getExtensionConfig(target, mode, env) { enabled: true, files: 'src/**/*.ts', options: { - cache: true, - cacheLocation: path.join( - __dirname, - target === 'webworker' ? '.eslintcache.browser' : '.eslintcache', - ), + // cache: true, + // cacheLocation: path.join( + // __dirname, + // target === 'webworker' ? '.eslintcache.browser' : '.eslintcache', + // ), overrideConfigFile: path.join( __dirname, target === 'webworker' ? '.eslintrc.browser.json' : '.eslintrc.json', @@ -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: {