subbed
subbed
DDeno
Created by subbed on 10/15/2024 in #help
deno check does not accept noImplicitReturns
hello. i have the following config inside deno.json:
{
"compilerOptions": {
"strict": true,
"noImplicitReturns": true
},
...
}
{
"compilerOptions": {
"strict": true,
"noImplicitReturns": true
},
...
}
running deno check still allows function signatures without the return type. how can i enforce the deno check to fail if no return type is present?
11 replies