053389d9b3
* 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
26 lines
815 B
JSON
26 lines
815 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"moduleDetection": "force",
|
|
"types": ["vitest/globals"],
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"paths": {
|
|
"@trigger.dev/core": ["../../packages/core/src/index"],
|
|
"@trigger.dev/core/*": ["../../packages/core/src/*"],
|
|
"@trigger.dev/database": ["../../internal-packages/database/src/index"],
|
|
"@trigger.dev/database/*": ["../../internal-packages/database/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|