Skip to content

Commit f530123

Browse files
chore: extend lib to provide configurable properties for VSCode (#565)
1 parent bb28bd6 commit f530123

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ interface Options {
101101
configuration: Record<string, boolean>;
102102
}
103103

104-
const ALL_CONFIG_KEYS = new Set(
104+
export const ALL_CONFIG_KEYS = new Set(
105105
(OPTIONS.string as readonly string[])
106106
.concat(OPTIONS.array)
107107
.concat(OPTIONS.boolean)

src/lib.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export { Server, type ServerOptions } from "./server.js";
22
export { Session, type SessionOptions } from "./common/session.js";
3-
export { defaultUserConfig, type UserConfig } from "./common/config.js";
3+
export { defaultUserConfig, type UserConfig, ALL_CONFIG_KEYS as configurableProperties } from "./common/config.js";
44
export { LoggerBase, type LogPayload, type LoggerType, type LogLevel } from "./common/logger.js";
55
export { StreamableHttpRunner } from "./transports/streamableHttp.js";
66
export {

0 commit comments

Comments
 (0)