Skip to content

Commit

Permalink
Remove "jest" from tsconfig types
Browse files Browse the repository at this point in the history
  • Loading branch information
domwebber committed Nov 20, 2024
1 parent c183b9d commit 4423a60
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"moduleResolution": "NodeNext",
"checkJs": true,
"strict": true,
"types": ["node", "jest"],
"types": ["node"],
"declaration": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
Expand All @@ -20,5 +20,7 @@
"sourceMap": true,
"declarationDir": "dist/"
},
"include": ["src/**/*"]
}
"include": [
"src/**/*"
]
}

0 comments on commit 4423a60

Please sign in to comment.