refactor: Migrate nodes build system to tsup (no-changelog) (#14192)

This commit is contained in:
Alex Grozav
2025-03-27 17:22:04 +02:00
committed by GitHub
parent f427202cd0
commit 2da0c86e4d
15 changed files with 117 additions and 23 deletions

View File

@@ -4,6 +4,7 @@
"@n8n/typescript-config/tsconfig.backend.json"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@utils/*": ["./utils/*"]
},
@@ -11,7 +12,14 @@
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
},
"include": ["credentials/**/*", "nodes/**/*", "utils/**/*.ts", "nodes/**/*.json", "types/*.ts"],
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"test/**/*.ts",
"types/**/*.ts",
"utils/**/*.ts"
],
"references": [
{ "path": "../../workflow/tsconfig.build.json" },
{ "path": "../../core/tsconfig.build.json" }