Skip to content

Commit 56e11ef

Browse files
committed
Disable strictBuiltinIteratorReturn check
'lru-cache' does some things that the typechecker dislikes. As per the issue isaacs/node-lru-cache#348, we disable the responsible check. This unblocks us from using newer typescript versions
1 parent 2665975 commit 56e11ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"noImplicitAny": true,
1313
"noImplicitReturns": true,
1414
"noFallthroughCasesInSwitch": true,
15-
"strictNullChecks": true
15+
"strictNullChecks": true,
16+
"strictBuiltinIteratorReturn": false
1617
},
1718
"include": ["./src/**/*.ts", "./test/**/*.ts"],
1819
"exclude": ["node_modules", ".vscode", ".vscode-test"]

0 commit comments

Comments
 (0)