Type annotations can only be used in TypeScript files.ts(8010)

vscode出现如下错误:
Type annotations can only be used in TypeScript files.ts(8010)_第1张图片
解决办法:
在VS CODE 的File / Preference / Settings 下 搜索javascript.validate.enabletypescript.validate.enable并且取消打勾,禁用VSCODE的js和ts的语法检查
Type annotations can only be used in TypeScript files.ts(8010)_第2张图片
typescript.validate.enable同理
Type annotations can only be used in TypeScript files.ts(8010)_第3张图片
但是运行后发现还是报错,原来不是语法问题:
Type annotations can only be used in TypeScript files.ts(8010)_第4张图片
原来res.render(file,option)的option是个对象,问题解决。

你可能感兴趣的:(Type annotations can only be used in TypeScript files.ts(8010))