TypeScript 忽略类型检查
1、单行忽略
type a = string // @ts-ignore let a = 0
2、跳过对某些文件的检查 (添加到该文件的首行才起作用)
// @ts-nocheck type a = string a = 2 a = "4"