Skip to content

Commit 5e865b5

Browse files
committed
chore: format, skip check on CJS compile
1 parent c98c875 commit 5e865b5

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

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, ALL_CONFIG_KEYS as configurableProperties } from "./common/config.js";
3+
export { type UserConfig } 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 {

tests/integration/build.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ describe("Build Test", () => {
4949
"Session",
5050
"StreamableHttpRunner",
5151
"Telemetry",
52-
"defaultUserConfig",
5352
])
5453
);
5554
});

tsconfig.cjs.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4+
"noCheck": true,
45
"module": "commonjs",
56
"moduleResolution": "node",
67
"outDir": "./dist/cjs"

0 commit comments

Comments
 (0)