我想只是临时添加代码,然后在提交之前将其删除。如何在打字稿中创建用户定义的警告,以便编译器(或构建服务器)使我知道该代码仍然存在。我不想忘记它。在C#中有#警告,在TypeScript中有类似的东西吗?
示例:
foo(){
// #warning: remove next line before commit, it is just for develop purposes
return true;
return someLogic(); // just this line should be there
}
答案 0 :(得分:1)
由于类型错误不会阻止代码生成,因此您可以编写一个会产生类型错误的伪代码行,例如:
let a: "remove me before commit" = "";