Tests: TS: add back missing type checking

tsx does not run any type checking, hence a separate
tsc step is needed .

Also, fix resulting type issue caused by external lib types.
This commit is contained in:
larabr
2025-08-25 15:26:02 +02:00
parent 5027bcd0eb
commit c5f9ecf3e4
3 changed files with 11 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"noEmit": true, // tested by tsx
},
"files": ["definitions.ts"]
}