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