Files
n8n-enterprise-unlocked/packages/@n8n/nodes-langchain/tsconfig.json
कारतोफ्फेलस्क्रिप्ट™ 979f9e6327 refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)
2025-04-29 17:42:21 +02:00

32 lines
779 B
JSON

{
"extends": [
"@n8n/typescript-config/tsconfig.common.json",
"@n8n/typescript-config/tsconfig.backend.json"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@utils/*": ["./utils/*"],
"@nodes-testing/*": ["../../core/nodes-testing/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
},
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"test/**/*.ts",
"types/**/*.ts",
"utils/**/*.ts"
],
"references": [
{ "path": "../../core/tsconfig.build.json" },
{ "path": "../../nodes-base/tsconfig.build.json" },
{ "path": "../../workflow/tsconfig.build.json" }
]
}