mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
29 lines
657 B
JSON
29 lines
657 B
JSON
{
|
|
"extends": [
|
|
"@n8n/typescript-config/tsconfig.common.json",
|
|
"@n8n/typescript-config/tsconfig.backend.json"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@utils/*": ["./utils/*"]
|
|
},
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
// 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" }
|
|
]
|
|
}
|