Skip to content

Commit 2109d25

Browse files
authored
Merge pull request #200 from orbitjs/no-implicity-any
Disable noImplicitAny flag in tsconfig
2 parents 8837244 + 93f44fa commit 2109d25

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)