Files
n8n/packages/nodes-base/tsconfig.json
alighasami 3d5eaf9445
Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

52 lines
1.4 KiB
JSON

{
"extends": ["@n8n/typescript-config/modern/tsconfig.json"],
"compilerOptions": {
"paths": {
"@credentials/*": ["./credentials/*"],
"@test/*": ["./test/*"],
"@utils/*": ["./utils/*"],
"@nodes-testing/*": ["../core/nodes-testing/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line to align with the modern config
// TODO: "module" to be removed when we migrate to vitest
"module": "commonjs",
// TODO: "moduleResolution" to be removed when we migrate to vitest
"moduleResolution": "node",
"noImplicitReturns": false,
"useUnknownInCatchVariables": false,
"isolatedModules": false,
"verbatimModuleSyntax": false,
"noUncheckedIndexedAccess": false,
"noImplicitOverride": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"preserveConstEnums": true
},
"include": [
"shims.d.ts",
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"test/**/*.ts",
"types/**/*.ts",
"utils/**/*.ts",
"types/**/*.ts",
"../core/nodes-testing/**/*.ts",
"../../node_modules/jest-expect-message/types/index.d.ts"
],
"exclude": [],
"references": [
{ "path": "../@n8n/imap/tsconfig.build.json" },
{ "path": "../workflow/tsconfig.build.esm.json" },
{ "path": "../core/tsconfig.build.json" }
]
}