mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
1f610b90f6
feat: use ES2022 native error chaining
19 lines
420 B
JSON
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"
|
|
]
|
|
}
|