Skip to content

Commit

Permalink
feat(aliasing): enable import aliasing
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Selman <[email protected]>
  • Loading branch information
dselman committed Nov 1, 2024
1 parent 0451038 commit d867a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (typeof self !== 'undefined') {
* Globals maintained by the language server
*/
export const GLOBAL_STATE:LanguageServerState = {
modelManager: new ModelManager({strict: true, enableMapType: true}),
modelManager: new ModelManager({strict: true, enableMapType: true, importAliasing: true}),
vocabularyManager: new VocabularyManager(),
diagnostics: new Diagnostics(),
connection: messageReader && messageWriter ? createConnection(messageReader, messageWriter) : null,
Expand Down

0 comments on commit d867a75

Please sign in to comment.