fix(plunkers):use correct tsconfig (#2611)

This commit is contained in:
Filipe Silva 2016-10-15 14:29:32 +01:00 committed by Jesús Rodríguez
parent a44c5ea685
commit 19a9e355a1
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ class PlunkerBuilder {
}
this.systemjsConfig = fs.readFileSync(this.basePath + systemJsConfigPath, 'utf-8');
this.systemjsConfig += this.copyrights.jsCss;
this.tsconfig = fs.readFileSync(`${this.basePath}/tsconfig.json`, 'utf-8');
this.tsconfig = fs.readFileSync(`${this.basePath}/_boilerplate/tsconfig.json`, 'utf-8');
}
_htmlToElement(document, html) {