mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-05-19 07:56:34 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
import { SupportedLanguage } from "@/constants/language";
|
||
|
|
||
|
export const DEFAULT_PATH: Record<SupportedLanguage, string> = {
|
||
|
c: "file:///main.c",
|
||
|
cpp: "file:///main.cpp",
|
||
|
};
|