tsc - 在命令行中忽略错误

时间:2018-01-11 05:08:55

标签: typescript typescript2.0 tsc

我有这个:

$ tsc -m amd --outFile dist/out.js lib/index.ts
  

lib / index.ts(87,48):错误TS1005:&#39 ;;'预期

是否有可用于忽略错误的命令行选项?

1 个答案:

答案 0 :(得分:1)

使用// // @ ts-ignore注释,Typescript编译器将忽略其下方的行。

例如,您在此处遇到编译错误:

enter image description here

enter image description here

然后只添加// @ ts-ignore enter image description here