mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Flip imports to case insensitive sorting (#51579)
This commit is contained in:
@@ -1,35 +1,15 @@
|
||||
import * as ts from "./_namespaces/ts";
|
||||
import {
|
||||
BuildOptions,
|
||||
BuilderProgram,
|
||||
CharacterCodes,
|
||||
CommandLineOption,
|
||||
CompilerOptions,
|
||||
CreateProgram,
|
||||
CreateProgramOptions,
|
||||
Debug,
|
||||
Diagnostic,
|
||||
DiagnosticMessage,
|
||||
DiagnosticReporter,
|
||||
Diagnostics,
|
||||
EmitAndSemanticDiagnosticsBuilderProgram,
|
||||
ExitStatus,
|
||||
ExtendedConfigCacheEntry,
|
||||
Extension,
|
||||
ParsedCommandLine,
|
||||
Program,
|
||||
ReportEmitErrorSummary,
|
||||
SolutionBuilder,
|
||||
SolutionBuilderHostBase,
|
||||
SourceFile,
|
||||
System,
|
||||
WatchCompilerHost,
|
||||
WatchOptions,
|
||||
arrayFrom,
|
||||
BuilderProgram,
|
||||
BuildOptions,
|
||||
buildOpts,
|
||||
changeCompilerHostLikeToUseCache,
|
||||
CharacterCodes,
|
||||
combinePaths,
|
||||
CommandLineOption,
|
||||
compareStringsCaseInsensitive,
|
||||
CompilerOptions,
|
||||
contains,
|
||||
convertToOptionsWithAbsolutePaths,
|
||||
convertToTSConfig,
|
||||
@@ -40,6 +20,8 @@ import {
|
||||
createGetCanonicalFileName,
|
||||
createIncrementalCompilerHost,
|
||||
createProgram,
|
||||
CreateProgram,
|
||||
CreateProgramOptions,
|
||||
createSolutionBuilder,
|
||||
createSolutionBuilderHost,
|
||||
createSolutionBuilderWithWatch,
|
||||
@@ -47,8 +29,17 @@ import {
|
||||
createWatchCompilerHostOfConfigFile,
|
||||
createWatchCompilerHostOfFilesAndCompilerOptions,
|
||||
createWatchProgram,
|
||||
Debug,
|
||||
Diagnostic,
|
||||
DiagnosticMessage,
|
||||
DiagnosticReporter,
|
||||
Diagnostics,
|
||||
dumpTracingLegend,
|
||||
EmitAndSemanticDiagnosticsBuilderProgram,
|
||||
emitFilesAndReportErrorsAndGetExitStatus,
|
||||
ExitStatus,
|
||||
ExtendedConfigCacheEntry,
|
||||
Extension,
|
||||
fileExtensionIs,
|
||||
fileExtensionIsOneOf,
|
||||
filter,
|
||||
@@ -75,18 +66,27 @@ import {
|
||||
parseBuildCommand,
|
||||
parseCommandLine,
|
||||
parseConfigFileWithSystem,
|
||||
ParsedCommandLine,
|
||||
Program,
|
||||
reduceLeftIterator,
|
||||
ReportEmitErrorSummary,
|
||||
SolutionBuilder,
|
||||
SolutionBuilderHostBase,
|
||||
sort,
|
||||
startTracing,
|
||||
SourceFile,
|
||||
startsWith,
|
||||
startTracing,
|
||||
stringContains,
|
||||
supportedJSExtensionsFlat,
|
||||
supportedTSExtensionsFlat,
|
||||
sys,
|
||||
System,
|
||||
toPath,
|
||||
tracing,
|
||||
validateLocaleAndSetLanguage,
|
||||
version,
|
||||
WatchCompilerHost,
|
||||
WatchOptions,
|
||||
} from "./_namespaces/ts";
|
||||
import * as performance from "../compiler/_namespaces/ts.performance";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user