From 747a6fd4f55f4a13adfa321c161dd8632e0c2ac1 Mon Sep 17 00:00:00 2001 From: Soo Jae Hwang Date: Wed, 22 Mar 2017 09:17:00 +0900 Subject: [PATCH] Replace "tsc @args.txt" to "tsc --project tsconfig.json" --- lib/tsc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tsc.js b/lib/tsc.js index be8abfb4a0d..f7231fcafd8 100644 --- a/lib/tsc.js +++ b/lib/tsc.js @@ -53977,7 +53977,7 @@ var ts; var padding = makePadding(marginLength); output.push(getDiagnosticText(ts.Diagnostics.Examples_Colon_0, makePadding(marginLength - examplesLength) + "tsc hello.ts") + ts.sys.newLine); output.push(padding + "tsc --outFile file.js file.ts" + ts.sys.newLine); - output.push(padding + "tsc @args.txt" + ts.sys.newLine); + output.push(padding + "tsc --project tsconfig.json" + ts.sys.newLine); output.push(ts.sys.newLine); output.push(getDiagnosticText(ts.Diagnostics.Options_Colon) + ts.sys.newLine); var optsList = ts.filter(ts.optionDeclarations.slice(), function (v) { return !v.experimental; });