We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2c5d8 commit 6e59229Copy full SHA for 6e59229
app/generator.js
@@ -63,6 +63,13 @@ export default class Generator extends Base {
63
64
if (this.skipConfig) {
65
this.filters = existingFilters;
66
+
67
+ this.scriptExt = this.filters.ts ? 'ts' : 'js';
68
+ this.templateExt = this.filters.jade ? 'jade' : 'html';
69
+ this.styleExt = this.filters.sass ? 'scss' :
70
+ this.filters.less ? 'less' :
71
+ this.filters.stylus ? 'styl' :
72
+ 'css';
73
} else {
74
this.filters = {};
75
this.forceConfig = true;
0 commit comments