소스 검색

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

불러오는 중...
취소
저장