mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 18:32:56 +01:00
176 lines
5.3 KiB
TypeScript
176 lines
5.3 KiB
TypeScript
|
|
declare module monaco.languages.typescript {
|
|
|
|
enum ModuleKind {
|
|
None = 0,
|
|
CommonJS = 1,
|
|
AMD = 2,
|
|
UMD = 3,
|
|
System = 4,
|
|
ES2015 = 5,
|
|
ESNext = 6
|
|
}
|
|
enum JsxEmit {
|
|
None = 0,
|
|
Preserve = 1,
|
|
React = 2,
|
|
ReactNative = 3
|
|
}
|
|
enum NewLineKind {
|
|
CarriageReturnLineFeed = 0,
|
|
LineFeed = 1
|
|
}
|
|
|
|
enum ScriptTarget {
|
|
ES3 = 0,
|
|
ES5 = 1,
|
|
ES2015 = 2,
|
|
ES2016 = 3,
|
|
ES2017 = 4,
|
|
ES2018 = 5,
|
|
ESNext = 6,
|
|
JSON = 100,
|
|
Latest = 6
|
|
}
|
|
|
|
export enum ModuleResolutionKind {
|
|
Classic = 1,
|
|
NodeJs = 2
|
|
}
|
|
|
|
interface MapLike<T> {
|
|
[index: string]: T;
|
|
}
|
|
|
|
type CompilerOptionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | null | undefined;
|
|
interface CompilerOptions {
|
|
allowJs?: boolean;
|
|
allowSyntheticDefaultImports?: boolean;
|
|
allowUnreachableCode?: boolean;
|
|
allowUnusedLabels?: boolean;
|
|
alwaysStrict?: boolean;
|
|
baseUrl?: string;
|
|
charset?: string;
|
|
checkJs?: boolean;
|
|
declaration?: boolean;
|
|
declarationMap?: boolean;
|
|
emitDeclarationOnly?: boolean;
|
|
declarationDir?: string;
|
|
disableSizeLimit?: boolean;
|
|
downlevelIteration?: boolean;
|
|
emitBOM?: boolean;
|
|
emitDecoratorMetadata?: boolean;
|
|
experimentalDecorators?: boolean;
|
|
forceConsistentCasingInFileNames?: boolean;
|
|
importHelpers?: boolean;
|
|
inlineSourceMap?: boolean;
|
|
inlineSources?: boolean;
|
|
isolatedModules?: boolean;
|
|
jsx?: JsxEmit;
|
|
keyofStringsOnly?: boolean;
|
|
lib?: string[];
|
|
locale?: string;
|
|
mapRoot?: string;
|
|
maxNodeModuleJsDepth?: number;
|
|
module?: ModuleKind;
|
|
moduleResolution?: ModuleResolutionKind;
|
|
newLine?: NewLineKind;
|
|
noEmit?: boolean;
|
|
noEmitHelpers?: boolean;
|
|
noEmitOnError?: boolean;
|
|
noErrorTruncation?: boolean;
|
|
noFallthroughCasesInSwitch?: boolean;
|
|
noImplicitAny?: boolean;
|
|
noImplicitReturns?: boolean;
|
|
noImplicitThis?: boolean;
|
|
noStrictGenericChecks?: boolean;
|
|
noUnusedLocals?: boolean;
|
|
noUnusedParameters?: boolean;
|
|
noImplicitUseStrict?: boolean;
|
|
noLib?: boolean;
|
|
noResolve?: boolean;
|
|
out?: string;
|
|
outDir?: string;
|
|
outFile?: string;
|
|
paths?: MapLike<string[]>;
|
|
preserveConstEnums?: boolean;
|
|
preserveSymlinks?: boolean;
|
|
project?: string;
|
|
reactNamespace?: string;
|
|
jsxFactory?: string;
|
|
composite?: boolean;
|
|
removeComments?: boolean;
|
|
rootDir?: string;
|
|
rootDirs?: string[];
|
|
skipLibCheck?: boolean;
|
|
skipDefaultLibCheck?: boolean;
|
|
sourceMap?: boolean;
|
|
sourceRoot?: string;
|
|
strict?: boolean;
|
|
strictFunctionTypes?: boolean;
|
|
strictNullChecks?: boolean;
|
|
strictPropertyInitialization?: boolean;
|
|
suppressExcessPropertyErrors?: boolean;
|
|
suppressImplicitAnyIndexErrors?: boolean;
|
|
target?: ScriptTarget;
|
|
traceResolution?: boolean;
|
|
resolveJsonModule?: boolean;
|
|
types?: string[];
|
|
/** Paths used to compute primary types search locations */
|
|
typeRoots?: string[];
|
|
esModuleInterop?: boolean;
|
|
[option: string]: CompilerOptionsValue | undefined;
|
|
}
|
|
|
|
export interface DiagnosticsOptions {
|
|
noSemanticValidation?: boolean;
|
|
noSyntaxValidation?: boolean;
|
|
}
|
|
|
|
export interface LanguageServiceDefaults {
|
|
/**
|
|
* Add an additional source file to the language service. Use this
|
|
* for typescript (definition) files that won't be loaded as editor
|
|
* document, like `jquery.d.ts`.
|
|
*
|
|
* @param content The file content
|
|
* @param filePath An optional file path
|
|
* @returns A disposable which will remove the file from the
|
|
* language service upon disposal.
|
|
*/
|
|
addExtraLib(content: string, filePath?: string): IDisposable;
|
|
|
|
/**
|
|
* Set TypeScript compiler options.
|
|
*/
|
|
setCompilerOptions(options: CompilerOptions): void;
|
|
|
|
/**
|
|
* Configure whether syntactic and/or semantic validation should
|
|
* be performed
|
|
*/
|
|
setDiagnosticsOptions(options: DiagnosticsOptions): void;
|
|
|
|
/**
|
|
* Configure when the worker shuts down. By default that is 2mins.
|
|
*
|
|
* @param value The maximum idle time in milliseconds. Values less than one
|
|
* mean never shut down.
|
|
*/
|
|
setMaximumWorkerIdleTime(value: number): void;
|
|
|
|
/**
|
|
* Configure if all existing models should be eagerly sync'd
|
|
* to the worker on start or restart.
|
|
*/
|
|
setEagerModelSync(value: boolean): void;
|
|
}
|
|
|
|
export var typeScriptVersion: string;
|
|
|
|
export var typescriptDefaults: LanguageServiceDefaults;
|
|
export var javascriptDefaults: LanguageServiceDefaults;
|
|
|
|
export var getTypeScriptWorker: () => Promise<any>;
|
|
export var getJavaScriptWorker: () => Promise<any>;
|
|
}
|