You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -125,7 +125,7 @@ Here is the short list of things which do *not* work yet.
125
125
```js
126
126
exportdefaultMyComponentextendsEmber.Component {
127
127
}
128
-
```
128
+
```
129
129
130
130
### Type safety when invoking actions
131
131
@@ -135,7 +135,7 @@ actions: {
135
135
...
136
136
}
137
137
}
138
-
```
138
+
```
139
139
140
140
```hbs
141
141
<!-- TypeScript compiler won't detect this type mismatch -->
@@ -163,5 +163,24 @@ Ember.Object.extend({
163
163
this.set('port', 3000);
164
164
}
165
165
});
166
-
```
166
+
```
167
+
168
+
169
+
### The TypeDefs I need to reference are not in node_modules/@types
170
+
171
+
By default `ember-cli-typescript` loads up any type defs found in node_modules/@types. If the type defs you need are not found here you can register a custom `path` in the tsconfig.json file
0 commit comments