Skip to content

Commit

Permalink
fix: test types reference to older version of stripe
Browse files Browse the repository at this point in the history
  • Loading branch information
exaby73 committed Jul 1, 2024
1 parent d3b8004 commit bf1daf2
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions firestore-stripe-payments/functions/__tests__/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"lib": ["es2017"],
"types": ["../node_modules/stripe/types/2020-08-27", "jest", "node"],
"lib": [
"es2017"
],
"types": [
"../node_modules/stripe/types/2024-06-20",
"jest",
"node"
],
"rootDir": "./"
},
"include": ["../__tests__"],
"exclude": ["../node_modules"]
}
"include": [
"../__tests__"
],
"exclude": [
"../node_modules"
]
}

0 comments on commit bf1daf2

Please sign in to comment.