14dcc76f93
* Cleanup context and execution creation, cache stuff, add parent and root task run ids * more efficient by using friendly IDs instead of doing joins * metadata.root/parent now reference current run when run has no root/parent * Adding changeset * try to make test less flaky * Clean imports * Another attempt to fix the flaky test * Fix usage by still passing durationMs and costInCents to the execution, just not the run.ctx
24 lines
656 B
JSON
24 lines
656 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"lib": ["ES2019", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"moduleDetection": "force",
|
|
"verbatimModuleSyntax": false,
|
|
"types": ["vitest/globals"],
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@trigger.dev/core": ["../../packages/core/src/index"],
|
|
"@trigger.dev/core/*": ["../../packages/core/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|