Add hbs alias to handlebars

This commit is contained in:
NullVoxPopuli 2021-05-10 21:54:48 -04:00 committed by GitHub
parent d6197d6e14
commit bc9c229a64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ import { registerLanguage } from '../_.contribution';
registerLanguage({ registerLanguage({
id: 'handlebars', id: 'handlebars',
extensions: ['.handlebars', '.hbs'], extensions: ['.handlebars', '.hbs'],
aliases: ['Handlebars', 'handlebars'], aliases: ['Handlebars', 'handlebars', 'hbs'],
mimetypes: ['text/x-handlebars-template'], mimetypes: ['text/x-handlebars-template'],
loader: () => import('./handlebars') loader: () => import('./handlebars')
}); });