https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8 9 10 11 12
import { TextDocument } from 'vscode-languageserver' export const JS_LANGUAGES = [ 'javascript', 'javascriptreact', 'reason', 'typescriptreact', ] export function isJsDoc(doc: TextDocument): boolean { return JS_LANGUAGES.indexOf(doc.languageId) !== -1 }