mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 22:02:55 +01:00
Merge 2ae8a97dc5 into ec78a33c7b
This commit is contained in:
commit
150c0389ff
1 changed files with 7 additions and 0 deletions
|
|
@ -47,6 +47,12 @@ export enum ScriptTarget {
|
||||||
Latest = ESNext
|
Latest = ESNext
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum ModuleDetectionKind {
|
||||||
|
Legacy = 1,
|
||||||
|
Auto = 2,
|
||||||
|
Force = 3
|
||||||
|
}
|
||||||
|
|
||||||
export enum ModuleResolutionKind {
|
export enum ModuleResolutionKind {
|
||||||
Classic = 1,
|
Classic = 1,
|
||||||
NodeJs = 2
|
NodeJs = 2
|
||||||
|
|
@ -99,6 +105,7 @@ export interface CompilerOptions {
|
||||||
mapRoot?: string;
|
mapRoot?: string;
|
||||||
maxNodeModuleJsDepth?: number;
|
maxNodeModuleJsDepth?: number;
|
||||||
module?: ModuleKind;
|
module?: ModuleKind;
|
||||||
|
moduleDetection?: ModuleDetectionKind;
|
||||||
moduleResolution?: ModuleResolutionKind;
|
moduleResolution?: ModuleResolutionKind;
|
||||||
newLine?: NewLineKind;
|
newLine?: NewLineKind;
|
||||||
noEmit?: boolean;
|
noEmit?: boolean;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue