我想要进行更严格的代码检查,并且我不想被允许拥有任何隐式的“任何”类型。因此我启用了"strict": true
tsconfig.json
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"strict": true
},
"include": ["./"]
}
如果我写这个函数:
const testing = () => console.log("test");
VSCode 自动通过它的用法推断返回类型:
const testing: () => void
有什么办法可以让这个更严格并且不允许 VSCode 自动推断?
谢谢