09d0e80804
* Sentry WIP * Configure sentry for uploading and releasing during the publish webapp step * Delete source maps after uploading * Forward logger.error calls to sentry through Logger.onError * Couple tweaks to the dockerfile
16 lines
370 B
JSON
16 lines
370 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"customConditions": ["@triggerdotdev/source"],
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable"],
|
|
"noEmit": true
|
|
},
|
|
"include": ["./src/**/*.ts", "trigger.config.ts"]
|
|
}
|