浏览代码

Disables eslint caching -- causes too many issues

main
Eric Amodio 2 年前
父节点
当前提交
69accb6992
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. +6
    -6
      webpack.config.js

+ 6
- 6
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: {

正在加载...
取消
保存