We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 586a440 commit 32a42a1Copy full SHA for 32a42a1
apps/molds-mcp/src/index.ts
@@ -56,8 +56,6 @@ export default new OAuthProvider({
56
apiRoute: '/sse',
57
authorizeEndpoint: '/authorize',
58
clientRegistrationEndpoint: '/register',
59
- // TODO: fix these types
60
- // @ts-expect-error
61
defaultHandler: app,
62
tokenEndpoint: '/token',
63
tokenExchangeCallback,
apps/molds-mcp/tsconfig.json
@@ -34,6 +34,9 @@
34
/* Enable all strict type-checking options. */
35
"strict": true,
36
37
+ /* Disable strict null checks. */
38
+ "strictNullChecks": false,
39
+
40
/* Skip type checking all .d.ts files. */
41
"skipLibCheck": true
42
}
0 commit comments