Skip to content

Commit

Permalink
chore: fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Aug 25, 2023
1 parent 33becd5 commit f080e12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/stripe/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const timestampToISOString = (date: number) =>
new Date(date * 1000).toISOString();

export const stripe = new Stripe(config.get("stripe.apiKey"), {
apiVersion: "2022-11-15",
apiVersion: "2023-08-16",
typescript: true,
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@
"vitest": "^0.34.3"
},
"volta": {
"node": "18.17.0"
"node": "18.17.1"
}
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/node18-strictest-esm/tsconfig.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"typeRoots": ["./apps/*/types", "./node_modules/@types"],
"paths": {
Expand Down

0 comments on commit f080e12

Please sign in to comment.