Skip to content

Commit 32a42a1

Browse files
committed
tsc disable strict null checks
1 parent 586a440 commit 32a42a1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/molds-mcp/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ export default new OAuthProvider({
5656
apiRoute: '/sse',
5757
authorizeEndpoint: '/authorize',
5858
clientRegistrationEndpoint: '/register',
59-
// TODO: fix these types
60-
// @ts-expect-error
6159
defaultHandler: app,
6260
tokenEndpoint: '/token',
6361
tokenExchangeCallback,

apps/molds-mcp/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
/* Enable all strict type-checking options. */
3535
"strict": true,
3636

37+
/* Disable strict null checks. */
38+
"strictNullChecks": false,
39+
3740
/* Skip type checking all .d.ts files. */
3841
"skipLibCheck": true
3942
}

0 commit comments

Comments
 (0)