Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

fix(schema)!: use strict typescript mode by default #8667

Merged
merged 1 commit into from Nov 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/schema/src/config/typescript.ts
Expand Up @@ -11,7 +11,7 @@ export default defineUntypedSchema({
* Once you’ve converted your codebase to TypeScript, you can start enabling these checks for greater safety.
* [Read More](https://www.typescriptlang.org/docs/handbook/migrating-from-javascript.html#getting-stricter-checks)
*/
strict: false,
strict: true,

/**
* Include parent workspace in the Nuxt project. Mostly useful for themes and module authors.
Expand Down