The title says it all. I currently have the typescript 0.9 compiler installed on my system, but Intellij only supports the 0.8 language style (e.g. bool instead of boolean). Is there a way to disable it?
I have Idea Intellij 12.1.3.
The title says it all. I currently have the typescript 0.9 compiler installed on my system, but Intellij only supports the 0.8 language style (e.g. bool instead of boolean). Is there a way to disable it?
I have Idea Intellij 12.1.3.
对此有一些设置 - 取决于您看到的是意图还是检查。如果您打开设置并前往...
“项目设置”,然后“检查”,然后单击“重置为空”
您还可以点击右下角的不开心脸,并在“无”、“语法”和“检查”之间滑动检查级别。
您还可以使用红色灯泡图标抑制特定问题。它将添加如下评论:
//noinspection JSUnresolvedFunction
这也为您提供了有关 TypeScript 检查实际上是 JavaScript 检查的线索。
或者
“IDE 设置”,然后是“意图”,并取消勾选您不想运行的框。
IntelliJ 12 仅支持 TypeScript 0.8。
您可以从http://confluence.jetbrains.com/display/IDEADEV/IDEA+13+EAP下载 IntelliJ 的 EAP 版本,其中添加了对 TypeScript 0.9 功能的支持。