xxxxxxxxxx
//@ts-ignore
function example() {
// Code that would normally raise an error
}
example(); // No error will be thrown
xxxxxxxxxx
function sum(a: number, b: number): number {
// @ts-ignore
return a + b; // This line will ignore type checking
}