@@ -70,8 +70,6 @@ export function activate(context: ExtensionContext) {
7070 { scheme : "file" , language : "javascriptreact" } ,
7171 { scheme : "file" , language : "typescript" } ,
7272 { scheme : "file" , language : "typescriptreact" } ,
73- // this applies grammar and thus highlighting i think?
74- { scheme : "file" , language : "vue" } ,
7573 ] ,
7674 synchronize : {
7775 // TODO: should this focus on `graphql-config` documents, schema and/or includes?
@@ -83,10 +81,8 @@ export function activate(context: ExtensionContext) {
8381 true ,
8482 ) ,
8583 // these ignore node_modules and .git by default
86- // this is more important for language features.
87- // we don't have language features for .vue yet but we can still try to load the files
8884 workspace . createFileSystemWatcher (
89- "**/{*.graphql,*.graphqls,*.gql,*.js,*.mjs,*.cjs,*.esm,*.es,*.es6,*.jsx,*.ts,*.tsx,*.vue }" ,
85+ "**/{*.graphql,*.graphqls,*.gql,*.js,*.mjs,*.cjs,*.esm,*.es,*.es6,*.jsx,*.ts,*.tsx}" ,
9086 ) ,
9187 ] ,
9288 } ,
@@ -132,7 +128,6 @@ export function activate(context: ExtensionContext) {
132128 "typescript" ,
133129 "javascriptreact" ,
134130 "typescriptreact" ,
135- "vue" ,
136131 "graphql" ,
137132 ] ,
138133 new GraphQLCodeLensProvider ( outputChannel ) ,
0 commit comments