Remove error about missing module flag from checker

This commit is contained in:
Jason Freeman
2014-07-18 14:06:08 -07:00
parent 91d31c7f51
commit 837a8935c7
3 changed files with 4 additions and 28 deletions

View File

@@ -45,7 +45,8 @@ module ts {
export function parseCommandLine(commandLine: string[]): ParsedCommandLine {
// Set default compiler option values
var options: CompilerOptions = {
target: ScriptTarget.ES3
target: ScriptTarget.ES3,
module: ModuleKind.None
};
var filenames: string[] = [];
var errors: Diagnostic[] = [];