Skip to content

Commit

Permalink
chore: remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Mar 5, 2024
1 parent e0fe62a commit f07649c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/typescript-plugin/index.ts
Expand Up @@ -223,10 +223,6 @@ function createLanguageServicePlugin(): ts.server.PluginModuleFactory {
) {
const oldFiles = externalFiles.get(project);
const newFiles = new Set(searchExternalFiles(ts, project, projectExternalFileExtensions.get(project)!));
console.log('volar-search vue files');
for (const file of newFiles) {
console.log(file);
}
externalFiles.set(project, newFiles);
if (oldFiles && !twoSetsEqual(oldFiles, newFiles)) {
for (const oldFile of oldFiles) {
Expand Down

0 comments on commit f07649c

Please sign in to comment.