monaco-editor-lsp-next/src/config/editor/path.ts

7 lines
184 B
TypeScript
Raw Normal View History

import { SupportedLanguage } from "@/constants/language";
export const DEFAULT_EDITOR_PATH: Record<SupportedLanguage, string> = {
c: "file:///main.c",
cpp: "file:///main.cpp",
};