Skip to content

Commit 5d238ae

Browse files
committed
fix: use dev version compiler Kingwl#26 /build
1 parent 741649b commit 5d238ae

24 files changed

+334585
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typings/
8080

8181
# Nuxt.js build / generate output
8282
.nuxt
83-
dist
83+
#dist
8484

8585
# Gatsby files
8686
.cache/

dist/grammars.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare function loadGrammars(monaco: typeof import("monaco-editor-core"), editor: import("monaco-editor-core").editor.IStandaloneCodeEditor): Promise<void>;

dist/index.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export declare const loadTheme: (editor: typeof import("monaco-editor-core").editor) => Promise<{
2+
dark: string;
3+
light: string;
4+
}>;
5+
export declare const loadGrammars: (monaco: typeof import("monaco-editor-core"), editor: import("monaco-editor-core").editor.IStandaloneCodeEditor) => Promise<void>;

0 commit comments

Comments
 (0)