diff --git a/src/index.ts b/src/index.ts index 320d598..95774b6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -182,5 +182,8 @@ namespace Private { /** * The incrementing id used for launcher widgets. */ - export const id = 0; + // There is a bug in `prefer-const` for exported let, see: + // - https://github.com/typescript-eslint/typescript-eslint/issues/4572 + // - https://github.com/typescript-eslint/typescript-eslint/issues/4573 + export let id = 0; // eslint-disable-line prefer-const }