Skip to content

Commit

Permalink
🔧 Avoid erroring on untyped errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov committed Apr 8, 2022
1 parent 28e910d commit ca40d7f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"target": "es2019",
"sourceMap": true,
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
},
"include": [
"**/*.d.ts",
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": false,
"sourceMap": true,
"baseUrl": ".",
"types": [
Expand Down
3 changes: 2 additions & 1 deletion packages/nodes-base/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"outDir": "./dist/",
"target": "es2019",
"sourceMap": true,
"esModuleInterop": true
"esModuleInterop": true,
"useUnknownInCatchVariables": false,
},
"include": [
"credentials/**/*",
Expand Down
3 changes: 2 additions & 1 deletion packages/workflow/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"declaration": true,
"outDir": "./dist/",
"target": "es2019",
"sourceMap": true
"sourceMap": true,
"useUnknownInCatchVariables": false,
},
"include": [
"**/*.d.ts",
Expand Down

0 comments on commit ca40d7f

Please sign in to comment.