refactor: move tsconfig to nuxt config

This commit is contained in:
Huskydog9988
2025-04-07 19:55:33 -04:00
parent f2f8dfefac
commit 2b92d75a4b
2 changed files with 3 additions and 4 deletions
+2
View File
@@ -49,6 +49,8 @@ export default defineNuxtConfig({
tsConfig: {
compilerOptions: {
verbatimModuleSyntax: false,
strictNullChecks: true,
exactOptionalPropertyTypes: true,
},
},
},
+1 -4
View File
@@ -1,7 +1,4 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"exactOptionalPropertyTypes": true
}
"extends": "./.nuxt/tsconfig.json"
}