ソースを参照

Fixes problem matcher support

main
Eric Amodio 4年前
コミット
6563fbd03e
3個のファイルの変更5行の追加2行の削除
  1. +2
    -2
      .vscode/tasks.json
  2. +1
    -0
      tsconfig.json
  3. +2
    -0
      webpack.config.js

+ 2
- 2
.vscode/tasks.json ファイルの表示

@ -20,7 +20,7 @@
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": ["$ts-checker-webpack", "$ts-checker-eslint-webpack"]
"problemMatcher": ["$ts-checker5-webpack", "$ts-checker5-eslint-webpack"]
},
{
"type": "npm",
@ -36,7 +36,7 @@
"isDefault": true
},
"isBackground": true,
"problemMatcher": ["$ts-checker-webpack-watch", "$ts-checker-eslint-webpack-watch"]
"problemMatcher": ["$ts-checker5-webpack-watch", "$ts-checker5-eslint-webpack-watch"]
}
]
}

+ 1
- 0
tsconfig.json ファイルの表示

@ -2,6 +2,7 @@
"compilerOptions": {
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["es2019"],
"module": "esnext",
"moduleResolution": "node",

+ 2
- 0
webpack.config.js ファイルの表示

@ -101,6 +101,7 @@ function getExtensionConfig(mode, env) {
new ForkTsCheckerPlugin({
async: false,
eslint: { enabled: true, files: 'src/**/*.ts', options: { cache: true } },
formatter: 'basic',
}),
];
@ -227,6 +228,7 @@ function getWebviewsConfig(mode, env) {
new ForkTsCheckerPlugin({
async: false,
eslint: { enabled: true, files: path.resolve(__dirname, 'src/**/*.ts'), options: { cache: true } },
formatter: 'basic',
typescript: {
tsconfig: path.resolve(__dirname, 'tsconfig.webviews.json'),
},

読み込み中…
キャンセル
保存