Skip to content

Commit 5a98d84

Browse files
authored
Remove "noImplicitAny: false" from the base TSConfig (#1653)
This option is `false` by default, so there is no need to set it to `false` explicitly. Also because of this, when a package enables the `strict` option, they also need to enable `noImplicitAny` explicitly, even though it is already a part of the `strict` option.
1 parent 8e81a47 commit 5a98d84

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

config/tsconfig.base.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
],
1010
"module": "ES2015",
1111
"moduleResolution": "node",
12-
"noImplicitAny": false,
1312
"sourceMap": true,
1413
"target": "es5",
1514
"typeRoots": [

packages/messaging/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"outDir": "dist",
55
"strict": true,
66
"noUnusedLocals": true,
7-
"noImplicitAny": true,
87
"lib": [
98
"dom",
109
"es2017"

0 commit comments

Comments
 (0)