Skip to content

Commit

Permalink
exclude lsp from index, validate exports
Browse files Browse the repository at this point in the history
  • Loading branch information
montymxb committed Dec 4, 2023
1 parent c2d1275 commit d3b1ef8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/langium/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ export * from './services.js';
export * from './syntax-tree.js';
export * from './documentation/index.js';
export * from './languages/index.js';
export * from './lsp/index.js';
export * from './parser/index.js';
export * from './references/index.js';
export * from './serializer/index.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/langium/src/workspace/workspace-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* terms of the MIT License, which is available in the project root.
******************************************************************************/

import { URI, UriUtils } from '../utils/uri-util.js';
import { type URI, UriUtils } from '../utils/uri-util.js';
import type { ICoreServiceRegistry } from '../service-registry.js';
import type { LangiumSharedCoreServices } from '../services.js';
import { interruptAndCheck, type MutexLock } from '../utils/promise-util.js';
Expand Down
1 change: 1 addition & 0 deletions packages/langium/test/tsconfig.export-main.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"exclude": [
"../src/generate/**/*",
"../src/grammar/**/*",
"../src/lsp/**/*",
"../src/test/**/*",
"../src/node/**/*"
]
Expand Down

0 comments on commit d3b1ef8

Please sign in to comment.