标签: typescript typescript2.0 tsc
我有这个:
$ tsc -m amd --outFile dist/out.js lib/index.ts
lib / index.ts(87,48):错误TS1005:&#39 ;;'预期
是否有可用于忽略错误的命令行选项?
答案 0 :(得分:1)
使用// // @ ts-ignore注释,Typescript编译器将忽略其下方的行。
例如,您在此处遇到编译错误:
然后只添加// @ ts-ignore