59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Workflow example",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"outDir": "lib",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@trigger.dev/sdk": [
|
|
"../../packages/trigger-sdk/src/index"
|
|
],
|
|
"@trigger.dev/sdk/*": [
|
|
"../../packages/trigger-sdk/src/*"
|
|
],
|
|
"@trigger.dev/github": [
|
|
"../../integrations/github/src/index"
|
|
],
|
|
"@trigger.dev/github/*": [
|
|
"../../integrations/github/src/*"
|
|
],
|
|
"@trigger.dev/slack": [
|
|
"../../integrations/slack/src/index"
|
|
],
|
|
"@trigger.dev/slack/*": [
|
|
"../../integrations/slack/src/*"
|
|
],
|
|
"@trigger.dev/resend": [
|
|
"../../integrations/resend/src/index"
|
|
],
|
|
"@trigger.dev/resend/*": [
|
|
"../../integrations/resend/src/*"
|
|
],
|
|
"@trigger.dev/shopify": [
|
|
"../../integrations/shopify/src/index"
|
|
],
|
|
"@trigger.dev/shopify/*": [
|
|
"../../integrations/shopify/src/*"
|
|
],
|
|
"@trigger.dev/whatsapp": [
|
|
"../../integrations/whatsapp/src/index"
|
|
],
|
|
"@trigger.dev/whatsapp/*": [
|
|
"../../integrations/whatsapp/src/*"
|
|
]
|
|
}
|
|
}
|
|
} |