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

This commit is contained in:
Daniel Roe 2022-11-03 15:19:23 -04:00 committed by GitHub
parent cda498b070
commit f3fbef981c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ export default defineUntypedSchema({
* Once youve 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.