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
'Skipping TypeScript preprocessing as there is no tsconfig.json. '+
21
-
'(If this is during installation of the add-on, this is as expected. If it is '+
22
-
'while building, serving, or testing the application, this is an error.)'
20
+
'(If this is during installation of the add-on, this is as expected. If it is '+
21
+
'while building, serving, or testing the application, this is an error.)'
23
22
);
24
23
return;
25
24
}
26
25
27
26
try{
28
-
registry.add('js',newTsPreprocessor({
29
-
ui: this.ui
30
-
}));
27
+
registry.add(
28
+
'js',
29
+
newTsPreprocessor({
30
+
ui: this.ui,
31
+
})
32
+
);
31
33
}catch(ex){
32
-
thrownewSilentError(`Failed to instantiate TypeScript preprocessor, probably due to an invalid tsconfig.json. Please fix or run \`ember generate ember-cli-typescript\`.\n${ex}`);
34
+
thrownewSilentError(
35
+
`Failed to instantiate TypeScript preprocessor, probably due to an invalid tsconfig.json. Please fix or run \`ember generate ember-cli-typescript\`.\n${ex}`
0 commit comments