subbedS
Denoβ€’2y agoβ€’
14 replies
subbed

deno check does not accept noImplicitReturns

hello. i have the following config inside
deno.json
:

{
  "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?
Was this page helpful?