812b5afe6f
* Add support for the built-in Trigger.dev tunnel for local development * Remove the test script from yalt * Add to the README * Improve the outdated packages warning
17 lines
500 B
JSON
17 lines
500 B
JSON
{
|
|
"extends": "@trigger.dev/tsconfig/node18.json",
|
|
"include": ["src/globals.d.ts", "./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"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|