17 lines
463 B
JSON
17 lines
463 B
JSON
{
|
|
"extends": "@trigger.dev/tsconfig/node16.json",
|
|
"include": ["src/**/*.ts"],
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["esnext", "dom"],
|
|
"outDir": "lib",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"integration-catalog": ["../integration-catalog/src/index"],
|
|
"integration-catalog/*": ["../integration-catalog/src/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "**/*.test.*"]
|
|
}
|