Skip to content

Commit 76887ab

Browse files
Merge pull request #28 from ember-cli/strict-generators
make sure we always use strict generators
2 parents 077ecdc + 87b1b2d commit 76887ab

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

files/.ember-cli

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,17 @@
33
Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
44
rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
55
*/
6-
"isTypeScriptProject": <%= typescript ? 'true' : 'false' %>
6+
"isTypeScriptProject": <%= typescript ? 'true' : 'false' %>,
7+
8+
/**
9+
Setting `componentAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
10+
or GTS files for the component and the component rendering test. "loose" is the default.
11+
*/
12+
"componentAuthoringFormat": "strict",
13+
14+
/**
15+
Setting `routeAuthoringFormat` to "strict" will force the blueprint generators to generate GJS
16+
or GTS templates for routes. "loose" is the default
17+
*/
18+
"routeAuthoringFormat": "strict"
719
}

0 commit comments

Comments
 (0)