Merge branch 'main' into update-setting-modal-styles

This commit is contained in:
Anirban Kar
2024-12-09 01:17:07 +05:30
3 changed files with 9 additions and 1 deletions

View File

@@ -1 +1 @@
{ "commit": "db8c65ec2ba2f28382cb5e792a3f7495fb9a8e03" }
{ "commit": "d9ae9d5afbd0310a976fc4c9aee4b9256edef79a" }

View File

@@ -1,6 +1,13 @@
import { LanguageDescription } from '@codemirror/language';
export const supportedLanguages = [
LanguageDescription.of({
name: 'VUE',
extensions: ['vue'],
async load() {
return import('@codemirror/lang-vue').then((module) => module.vue());
},
}),
LanguageDescription.of({
name: 'TS',
extensions: ['ts'],