Skip to content

Commit ee76ec5

Browse files
committed
Removed eslint from ForkTsCheckerWebpackPlugin
1 parent a4af1e1 commit ee76ec5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function getExtensionConfig(mode, env) {
1717
plugins.push(
1818
new ForkTsCheckerWebpackPlugin({
1919
async: false,
20-
eslint: { enabled: true, files: 'src/**/*.ts', options: { cache: true } },
20+
// eslint: { enabled: true, files: 'src/**/*.ts', options: { cache: true } },
2121
formatter: 'basic',
2222
}),
2323
);
@@ -54,7 +54,7 @@ function getExtensionConfig(mode, env) {
5454
module: {
5555
rules: [
5656
{
57-
test: /\.ts$/,
57+
test: /\.tsx?$/,
5858
exclude: /node_modules/,
5959
include: path.join(__dirname, 'src'),
6060
use: [

0 commit comments

Comments
 (0)