n8n/packages/nodes-base/tsconfig.json
Ivan Atanasov d4116630a6
feat: (Execute Workflow Node): Inputs for Sub-workflows (#11830) (#11837)
Co-authored-by: Charlie Kolb <charlie@n8n.io>
Co-authored-by: Milorad FIlipović <milorad@n8n.io>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-12-20 17:01:22 +01:00

26 lines
618 B
JSON

{
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
"compilerOptions": {
"paths": {
"@test/*": ["./test/*"],
"@utils/*": ["./utils/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
// TODO: remove all options below this line
"noImplicitReturns": false,
"useUnknownInCatchVariables": false
},
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"test/**/*.ts",
"utils/**/*.ts",
"types/**/*.ts"
],
"references": [
{ "path": "../@n8n/imap/tsconfig.build.json" },
{ "path": "../workflow/tsconfig.build.json" },
{ "path": "../core/tsconfig.build.json" }
]
}