Fix UI test timeouts, TypeScript compilation, dependency compatibility, and backend tests with isolated test suite using per-test mocking (#930)

This commit is contained in:
Copilot
2025-12-20 15:09:26 +01:00
committed by GitHub
parent 5a54ba4983
commit 92aa2c9fa8
14 changed files with 3135 additions and 667 deletions

View File

@@ -6,11 +6,21 @@
"strictNullChecks": true,
"outDir": "./build",
"strict": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "ES2017",
"lib": [
"es2017",
"dom"
],
"sourceMap": true
"sourceMap": true,
"esModuleInterop": true
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
},
"transpileOnly": true
},
"includes": [
"src/**/*.ts"
@@ -20,6 +30,8 @@
"node_modules",
"src/**/*.spec.ts",
"**/*.d.ts",
"typings"
"typings",
"../events",
"../app"
]
}