Files
triggerdotdev--trigger.dev/apps/webapp/tsconfig.check.json
T
nicktrn 053389d9b3 Fix testcontainers cleanup (#2023)
* update testcontainers packages

* increase cleanup timeout and add better logs

* small tweaks

* decrease docker network size so we can have more of them

* add a test flow to check this all works

* await all engine.quit calls

* add docker diagnostics

* reduce number of test runs

* improve network attachment output

* add setup logs

* log redis setup errors

* add cleanup log type

* stop redis container if setup fails

* disable ipv6

* tidy things up a bit

* fix unit tests workflow

* decrease container cleanup timeout

* fix types

* fix webapp typecheck
2025-05-06 08:56:34 +01:00

14 lines
270 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ES2022"],
"target": "ES2022",
"noEmit": true,
"paths": {
"~/*": ["./app/*"],
"@/*": ["./*"]
},
"customConditions": []
}
}