feat(lsp): add default language configuration

This commit is contained in:
cfngc4594 2025-02-20 14:03:00 +08:00
parent 9c78049359
commit bb81c4f7e1

3
src/config/language.ts Normal file
View File

@ -0,0 +1,3 @@
import { SUPPORTED_LANGUAGES, SupportedLanguage } from "@/constants/language";
export const DEFAULT_LANGUAGE: SupportedLanguage = SUPPORTED_LANGUAGES[0].id;