Skip to content

Commit 95313a4

Browse files
committed
use a ts-expect-error workaround to resolve tsconfig-verifier test issues
1 parent 0ac5a14 commit 95313a4

File tree

1 file changed

+3
-3
lines changed
  • test/integration/tsconfig-verifier/pages

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1+
/* eslint-disable @typescript-eslint/no-unused-vars */
22
const blah: boolean = false
3-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4-
const blah2 = import('../value').then((r) => r.default)
3+
// @ts-expect-error ignore the import issue here caused by https://github.com/microsoft/TypeScript/issues/49083
4+
const blah2 = import('../value.ts').then((r) => r.default)
55

66
export default () => <h3>Hello TypeScript</h3>

0 commit comments

Comments
 (0)