Skip to content

Commit e2ab858

Browse files
authoredApr 5, 2025··
Merge pull request #254 from heyitsaamir/aamirj/fixCJSIssue
Bump pkce up to 5.0.0 to fix CJS dependency issue
2 parents 854b55e + 02f817d commit e2ab858

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed
 

‎package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"eventsource": "^3.0.2",
5353
"express": "^5.0.1",
5454
"express-rate-limit": "^7.5.0",
55-
"pkce-challenge": "^4.1.0",
55+
"pkce-challenge": "^5.0.0",
5656
"raw-body": "^3.0.0",
5757
"zod": "^3.23.8",
5858
"zod-to-json-schema": "^3.24.1"

‎tsconfig.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
"forceConsistentCasingInFileNames": true,
1313
"resolveJsonModule": true,
1414
"isolatedModules": true,
15-
"skipLibCheck": true
15+
"skipLibCheck": true,
16+
"baseUrl": ".",
17+
"paths": {
18+
"pkce-challenge": ["node_modules/pkce-challenge/dist/index.node"]
19+
}
1620
},
1721
"include": ["src/**/*"],
1822
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)
Please sign in to comment.