Bläddra i källkod

Disables eslint caching -- causes too many issues

main
Eric Amodio 2 år sedan
förälder
incheckning
69accb6992
1 ändrade filer med 6 tillägg och 6 borttagningar
  1. +6
    -6
      webpack.config.js

+ 6
- 6
webpack.config.js Visa fil

@ -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: {

Laddar…
Avbryt
Spara