TypeScript/tests/cases/compiler/checkJsFiles_skipDiagnostics.ts
2017-03-22 16:23:21 -07:00

33 lines
307 B
TypeScript

// @allowJs: true
// @checkJs: true
// @noEmit: true
// @fileName: a.js
var x = 0;
/// @ts-ignore
x();
/// @ts-ignore
x();
/// @ts-ignore
x(
2,
3);
// @ts-ignore
// come comment
// some other comment
// @anohter
x();
// @ts-ignore: no call signature
x();