Browse Source

Re-enables eslint caching

main
Eric Amodio 2 years ago
parent
commit
b7c1697755
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      webpack.config.js

+ 2
- 2
webpack.config.js View File

@ -63,7 +63,7 @@ function getExtensionConfig(target, mode, env) {
enabled: true, enabled: true,
files: 'src/**/*.ts', files: 'src/**/*.ts',
options: { options: {
// cache: true,
cache: true,
cacheLocation: path.join( cacheLocation: path.join(
__dirname, __dirname,
target === 'webworker' ? '.eslintcache.browser' : '.eslintcache', target === 'webworker' ? '.eslintcache.browser' : '.eslintcache',
@ -303,7 +303,7 @@ function getWebviewsConfig(mode, env) {
eslint: { eslint: {
enabled: true, enabled: true,
files: path.join(basePath, '**', '*.ts'), files: path.join(basePath, '**', '*.ts'),
// options: { cache: true },
options: { cache: true },
}, },
formatter: 'basic', formatter: 'basic',
typescript: { typescript: {

Loading…
Cancel
Save