nitro icon indicating copy to clipboard operation
nitro copied to clipboard

Set `"strict": true` in tsconfig

Open hymair opened this issue 1 month ago • 1 comments

Describe the feature

As in Nuxt, strict should ideally be enabled by default.

Additional information

Overwriting tsconfig works as well so far:

// https://nitro.unjs.io/guide/typescript
{
    "extends": "./.nitro/types/tsconfig.json",
    "compilerOptions": {
        "strict": true
    }
}

hymair avatar May 18 '24 07:05 hymair