mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
044607e2a0
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
15 lines
493 B
JSON
15 lines
493 B
JSON
{
|
|
"extends": ["../../../tsconfig.json", "../../../tsconfig.backend.json"],
|
|
"compilerOptions": {
|
|
"lib": ["es2020", "es2022.error"],
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
// TODO: remove all options below this line
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["credentials/**/*", "nodes/**/*", "utils/**/*.ts", "nodes/**/*.json", "types/*.ts"],
|
|
"references": [
|
|
{ "path": "../../workflow/tsconfig.build.json" },
|
|
{ "path": "../../core/tsconfig.build.json" }
|
|
]
|
|
}
|