Skip to content

Commit 48cedd8

Browse files
authored
1 parent 4bc74ab commit 48cedd8

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

packages/common/src/index.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export * from "./cursorlessCommandIds";
22
export * from "./testUtil/extractTargetedMarks";
33
export { default as FakeIDE } from "./ide/fake/FakeIDE";
4-
export { Message } from "./ide/spy/SpyMessages";
5-
export { SpyIDERecordedValues } from "./ide/spy/SpyIDE";
4+
export type { Message } from "./ide/spy/SpyMessages";
5+
export type { SpyIDERecordedValues } from "./ide/spy/SpyIDE";
66
export { default as SpyIDE } from "./ide/spy/SpyIDE";
77
export { HatStability } from "./ide/types/HatStability";
88
export * from "./util";
@@ -11,8 +11,9 @@ export { getKey, splitKey } from "./util/splitKey";
1111
export { hrtimeBigintToSeconds } from "./util/timeUtils";
1212
export * from "./util/walkSync";
1313
export * from "./util/walkAsync";
14-
export { Listener, Notifier } from "./util/Notifier";
15-
export { TokenHatSplittingMode } from "./ide/types/Configuration";
14+
export { Notifier } from "./util/Notifier";
15+
export type { Listener } from "./util/Notifier";
16+
export type { TokenHatSplittingMode } from "./ide/types/Configuration";
1617
export * from "./ide/types/ide.types";
1718
export * from "./ide/types/Capabilities";
1819
export * from "./ide/types/CommandId";

tsconfig.base.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"resolveJsonModule": true,
1111
"composite": true,
1212
"forceConsistentCasingInFileNames": true,
13+
"isolatedModules": true,
1314
"strict": true
1415
}
1516
}

0 commit comments

Comments
 (0)