mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-18 23:42:24 +00:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { SupportedLanguage } from "@/constants/language";
|
|
|
|
export const DEFAULT_EDITOR_PATH: Record<SupportedLanguage, string> = {
|
|
c: "file:///main.c",
|
|
cpp: "file:///main.cpp",
|
|
};
|