feat(frontend): Add vue-tsc, fix some types errors

This commit is contained in:
2025-02-21 13:17:14 +01:00
parent 31ff737221
commit 7c6b6e428c
6 changed files with 1837 additions and 2816 deletions

View File

@@ -1,4 +1,10 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
// Prevents the following error with openapi generated code (came with nuxt 3.12):
// ERROR(vue-tsc) This parameter property must have an 'override' modifier because it overrides a member in base class 'Error'.
// FILE /Users/denislugowski/Projekte/legalconsenthub/legalconsenthub/.api-client/runtime.ts:276:5
"noImplicitOverride": false
}
}