We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac5a14 commit 95313a4Copy full SHA for 95313a4
test/integration/tsconfig-verifier/pages/index.tsx
@@ -1,6 +1,6 @@
1
-// eslint-disable-next-line @typescript-eslint/no-unused-vars
+/* eslint-disable @typescript-eslint/no-unused-vars */
2
const blah: boolean = false
3
4
-const blah2 = import('../value').then((r) => r.default)
+// @ts-expect-error ignore the import issue here caused by https://github.com/microsoft/TypeScript/issues/49083
+const blah2 = import('../value.ts').then((r) => r.default)
5
6
export default () => <h3>Hello TypeScript</h3>
0 commit comments