Skip to content

Commit 93f44fa

Browse files
committed
Disable noImplicitAny flag in tsconfig
In order to enable the noImplicitAny flag in tsconfig, we'll need to provide proper typings for proxy arrays (and either convert them to TS or ideally replace them with something better).
1 parent 8837244 commit 93f44fa

File tree

1 file changed

+8
-23
lines changed

1 file changed

+8
-23
lines changed

tsconfig.json

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"allowJs": true,
55
"moduleResolution": "node",
66
"allowSyntheticDefaultImports": true,
7-
"noImplicitAny": true,
7+
"noImplicitAny": false,
88
"noImplicitThis": true,
99
"alwaysStrict": true,
1010
"strictNullChecks": true,
@@ -20,28 +20,13 @@
2020
"baseUrl": ".",
2121
"module": "es6",
2222
"paths": {
23-
"dummy/tests/*": [
24-
"tests/*"
25-
],
26-
"dummy/*": [
27-
"tests/dummy/app/*",
28-
"app/*"
29-
],
30-
"ember-orbit": [
31-
"addon"
32-
],
33-
"ember-orbit/*": [
34-
"addon/*"
35-
],
36-
"ember-orbit/test-support": [
37-
"addon-test-support"
38-
],
39-
"ember-orbit/test-support/*": [
40-
"addon-test-support/*"
41-
],
42-
"*": [
43-
"types/*"
44-
]
23+
"dummy/tests/*": ["tests/*"],
24+
"dummy/*": ["tests/dummy/app/*", "app/*"],
25+
"ember-orbit": ["addon"],
26+
"ember-orbit/*": ["addon/*"],
27+
"ember-orbit/test-support": ["addon-test-support"],
28+
"ember-orbit/test-support/*": ["addon-test-support/*"],
29+
"*": ["types/*"]
4530
}
4631
},
4732
"include": [

0 commit comments

Comments
 (0)