tslint 忽略对某行代码的检测
class Ajanuw {
constructor() {
console.log("hello ajanuw");
}
}
// @ts-ignore: Unreachable code error
const a = Ajanuw();
class Ajanuw {
constructor() {
console.log("hello ajanuw");
}
}
// @ts-ignore: Unreachable code error
const a = Ajanuw();