mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
e8e44f6b6e
This PR adds logging for binary data file write errors, to capture why executions sometimes point to non-existing binary data files. See [Sentry error](https://n8nio.sentry.io/issues/4495134693/?alert_rule_id=14556563&alert_type=issue¬ification_uuid=4b50a5da-6ae9-472e-9658-984cca824762&project=4503924908883968&referrer=slack).
21 lines
516 B
JSON
21 lines
516 B
JSON
{
|
|
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"composite": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
// TODO: remove all options below this line
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
{ "path": "../@n8n/client-oauth2/tsconfig.build.json" }
|
|
]
|
|
}
|