Skip to content

Commit

Permalink
fix: merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kalvenschraut committed Jun 7, 2023
1 parent f9b9146 commit a0e30ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/vue-language-core/src/languageModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { Language, LanguageServiceHost } from '@volar/language-core';
import { posix as path } from 'path';
import { getDefaultVueLanguagePlugins } from './plugins';
import { VueFile } from './sourceFile';
import { VueCompilerOptions } from './types';
import * as sharedTypes from './utils/directorySharedTypes';
import type * as ts from 'typescript/lib/tsserverlibrary';
import { resolveVueCompilerOptions } from './utils/ts';
Expand Down Expand Up @@ -45,7 +46,7 @@ export function createLanguage(
_vueCompilerOptions: Partial<VueCompilerOptions> = {},
ts: typeof import('typescript/lib/tsserverlibrary') = require('typescript'),
codegenStack: boolean = false,
): Language {
) {

const vueCompilerOptions = resolveVueCompilerOptions(_vueCompilerOptions);

Expand Down

0 comments on commit a0e30ae

Please sign in to comment.