From 19a9e355a1d091475692e8db7cd29340aab46710 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Sat, 15 Oct 2016 14:29:32 +0100 Subject: [PATCH] fix(plunkers):use correct tsconfig (#2611) --- tools/plunker-builder/builder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/plunker-builder/builder.js b/tools/plunker-builder/builder.js index 9a80b01e43..9d893f3304 100644 --- a/tools/plunker-builder/builder.js +++ b/tools/plunker-builder/builder.js @@ -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) {