We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ea69ad commit c835303Copy full SHA for c835303
lib/broccoli/angular2-app.js
@@ -272,7 +272,7 @@ class Angular2App extends BroccoliPlugin {
272
var sourceTree = this._getSourceTree();
273
var configTree = this._getConfigTree();
274
275
- var tsConfigPath = path.join(this._sourceDir, 'tsconfig.json');
+ var tsConfigPath = this._options.tsConfig || path.join(this._sourceDir, 'tsconfig.json');
276
var tsconfig = JSON.parse(fs.readFileSync(tsConfigPath, 'utf-8'));
277
278
// Add all glob files to files. In some cases we don't want to specify
0 commit comments