开发 TypeScript 的人使用 Visual Studio Code?我也在尝试使用它。但我没有验证(ts-lint)警告或错误。我刚刚在构建时收到这样的消息:
ts-lint start
src/constants/type.ts[22, 2]: file should end with a newline
src/constants/type.ts[6, 5]: misplaced opening brace
ts-lint end
例子:
1 == 2
JS 文件中的这样的表达式会告诉我使用1 === 2
. 但是 TS 文件中的这个表达式会起作用,甚至不会显示任何警告。
在打字时,我能做些什么来在 TypeScript 中启用这种验证?