tsconfig options

This commit is contained in:
Gauthier Roebroeck 2025-05-23 09:28:24 +08:00
parent a372d354e6
commit 044f590ac3
2 changed files with 2 additions and 3 deletions

View file

@ -21,7 +21,6 @@ declare module 'vue' {
AppFooter: typeof import('./components/AppFooter.vue')['default']
BuildCommit: typeof import('./components/BuildCommit.vue')['default']
BuildVersion: typeof import('./components/BuildVersion.vue')['default']
DialogConfirm: typeof import('./components/dialogs/DialogConfirm.vue')['default']
DialogConfirmEdit: typeof import('./components/dialogs/DialogConfirmEdit.vue')['default']
FormUserChangePassword: typeof import('./components/forms/user/FormUserChangePassword.vue')['default']
FormUserRoles: typeof import('./components/forms/user/FormUserRoles.vue')['default']

View file

@ -3,10 +3,10 @@
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"composite": false,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"module": "ESNext",
"moduleResolution": "bundler",
"moduleResolution": "Bundler",
"noUncheckedIndexedAccess": true, // openapi-ts
"baseUrl": ".",