void CreateCommandLine()
        {
            properties = new Properties();
            options = new TypeScriptOptions(properties);
            options.IncludeComments = false;
            options.GenerateSourceMap = false;
            options.EcmaScriptTargetVersion = "";
            options.ModuleKind = "";

            commandLine = new TypeScriptCompilerArguments(options);
        }
 public TypeScriptCompiler(TypeScriptOptions options)
 {
     commandLineArguments = new TypeScriptCompilerArguments(options);
 }