fix issues

This commit is contained in:
2025-12-26 11:49:20 +01:00
parent d08ec10b40
commit 68ae9da22a
44 changed files with 505 additions and 179 deletions

View File

@@ -6,18 +6,42 @@
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true
"alwaysStrict": true,
"baseUrl": ".",
"paths": {
"@/*": ["apps/website/*"],
"@core/*": ["core/*"],
"@adapters/*": ["adapters/*"],
"@testing/*": ["testing/*"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"jsx": "preserve",
"skipLibCheck": true,
"exactOptionalPropertyTypes": false
},
"include": [
"core/**/*",
"apps/**/*",
"tests/**/*",
"adapters/**/*"
"adapters/**/*",
"apps/api/**/*",
"apps/website/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/dist/**",
"**/.next/**",
"**/*.js",
"tests/e2e/step-definitions/automation.steps.ts"
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/__tests__/**",
"apps/companion/**/*",
"tests/**/*",
"testing/**/*"
]
}