18 lines
510 B
JSON
18 lines
510 B
JSON
{
|
|
"extends": "@trigger.dev/tsconfig/base.json",
|
|
"include": ["./src/**/*.ts", "tsup.config.ts"],
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"paths": {
|
|
"@trigger.dev/tsup/*": ["../../config-packages/tsup/src/*"],
|
|
"@trigger.dev/tsup": ["../../config-packages/tsup/src/index"]
|
|
},
|
|
"lib": ["DOM", "DOM.Iterable"],
|
|
"downlevelIteration": true
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|