https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#-ts-nocheck-in-typescript-files
`.ts`ファイルに対して[[Semantic Check]]を無効化できるようになった。ファイルの先頭に`// @ts-nocheck`を記載すればよい。
```ts
// @ts-nocheck
const hoge = 10;
// TypeScript 3.6だとエラーになるが、3.7ではエラーにならない
hoge = "ten";
```