n8n/packages/nodes-base/tsconfig.json
कारतोफ्फेलस्क्रिप्ट™ 1f610b90f6
feat: use ES2022 native error chaining to improve error reporting (#4431)
feat: use ES2022 native error chaining
2022-10-26 11:55:39 +02:00

19 lines
420 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"lib": ["dom", "es2020", "es2022.error"],
"types": ["node", "jest"],
// TODO: remove all options below this line
"noImplicitReturns": false,
"noUnusedLocals": false,
"useUnknownInCatchVariables": false
},
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"credentials/translations/**/*.json"
]
}