mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 07:00:11 +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
|
||||
}
|
||||
|
||||
export enum ModuleDetectionKind {
|
||||
Legacy = 1,
|
||||
Auto = 2,
|
||||
Force = 3
|
||||
}
|
||||
|
||||
export enum ModuleResolutionKind {
|
||||
Classic = 1,
|
||||
NodeJs = 2
|
||||
|
|
@ -99,6 +105,7 @@ export interface CompilerOptions {
|
|||
mapRoot?: string;
|
||||
maxNodeModuleJsDepth?: number;
|
||||
module?: ModuleKind;
|
||||
moduleDetection?: ModuleDetectionKind;
|
||||
moduleResolution?: ModuleResolutionKind;
|
||||
newLine?: NewLineKind;
|
||||
noEmit?: boolean;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue