Make new exported functions internal

This commit is contained in:
Mohamed Hegazy
2015-08-25 14:34:34 -07:00
parent f3d36616b7
commit b85665cd38
3 changed files with 7 additions and 0 deletions

View File

@@ -225,6 +225,7 @@ namespace ts {
return { resolvedFileName: referencedSourceFile, failedLookupLocations };
}
/* @internal */
export const defaultInitCompilerOptions: CompilerOptions = {
module: ModuleKind.CommonJS,
target: ScriptTarget.ES3,
@@ -234,6 +235,7 @@ namespace ts {
sourceMap: false,
}
/* @internal */
export function scriptTargetToString(target: ScriptTarget): string {
switch (target) {
case ScriptTarget.ES5:
@@ -245,6 +247,7 @@ namespace ts {
}
}
/* @internal */
export function moduleKindToString(kind: ModuleKind): string {
switch (kind) {
case ModuleKind.None:
@@ -260,6 +263,7 @@ namespace ts {
}
}
/* @internal */
export function newLineKindToString(kind: NewLineKind): string {
switch (kind) {
case NewLineKind.CarriageReturnLineFeed: