-
-
Notifications
You must be signed in to change notification settings - Fork 246
Closed
Labels
Description
My current config:
new ForkTsCheckerWebpackPlugin({
// useTypescriptIncrementalApi: false,
async: false,
eslint: true,
ignoreLintWarnings: false,
}),
created the variable without using it anywhere else
const me = 'something'
Actual output
[cI1f] /Users/theophy/dev/..../../Component.tsx 2.17 KiB {Page} [built]
+ 13 hidden modules
Expected output
[cI1f] /Users/theophy/dev/..../../Component.tsx 2.17 KiB {Page} [built]
+ 13 hidden modules
WARNING in /Users/theophy/dev/..../../Component.tsx
WARNING in /Users/theophy/dev/..../../Component.tsx(20,9):
@typescript-eslint/no-unused-vars: 'me' is assigned a value but never used.
Changing useTypescriptIncrementalApi
to false
works but is much slower.
related to #219