We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d761c commit 2575c6aCopy full SHA for 2575c6a
blueprints/ember-cli-typescript/files/tsconfig.json
@@ -9,7 +9,12 @@
9
"baseUrl": ".",
10
"paths": {
11
"<%= dasherizedPackageName %>/tests/*": ["tests/*"],
12
- "<%= dasherizedPackageName %>/*": ["app/*"]
+ "<%= dasherizedPackageName %>/*": [
13
+ "app/*"<%
14
+inRepoAddons.forEach(function(path) { %>,
15
+ "<%= path %>/app/*"<%
16
+}) %>
17
+ ]
18
}
19
},
20
"exclude": [
blueprints/ember-cli-typescript/index.js
@@ -26,6 +26,12 @@ module.exports = {
26
27
28
29
+ locals() {
30
+ return {
31
+ inRepoAddons: (this.project.pkg['ember-addon'] || {}).paths || []
32
+ };
33
+ },
34
+
35
normalizeEntityName() {
36
// Entity name is optional right now, creating this hook avoids an error.
37
0 commit comments