Turn on TS strict mode for deno_typescript (#3330)

This commit is contained in:
Ry Dahl 2019-11-14 15:05:36 -05:00 committed by GitHub
parent 8b90b8e883
commit 4902a1cacb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 27 additions and 9 deletions

View file

@ -2858,4 +2858,10 @@ declare namespace WebAssembly {
}
}
/* eslint-enable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any */
// Catch-all for JSX elements.
// See https://www.typescriptlang.org/docs/handbook/jsx.html#intrinsic-elements
declare namespace JSX {
interface IntrinsicElements {
[elemName: string]: any;
}
}