n8n/packages/nodes-base/tsconfig.json
कारतोफ्फेलस्क्रिप्ट™ 96219486dc
ci: Use tsc-watch across all backend packages (no-changelog) (#11364)
2024-10-23 14:39:44 +02:00

20 lines
588 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"],
"references": [
{ "path": "../@n8n/imap/tsconfig.build.json" },
{ "path": "../workflow/tsconfig.build.json" },
{ "path": "../core/tsconfig.build.json" }
]
}