Skip to content

Commit

Permalink
skipLibCheck true in tsconfig.jasmine
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca committed Dec 26, 2024
1 parent fb8d1e9 commit 6ab1734
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.133-beta
2.5.134-beta
3 changes: 2 additions & 1 deletion tsconfig.d.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"src/**/*.mts",
"src/**/*.cts",
"node_modules",
"node_modules/**/*"
"node_modules/**/*",
"public/types"
],
"ts-node": {
"transpileOnly": true,
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.jasmine.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
"spec/**/*",
"src/**/*",
"src/*"
],
"exclude": [
"src/**/*.mts",
"src/**/*.cts",
"node_modules",
"node_modules/**/*",
"public/types"
]

}
7 changes: 7 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
"src/**/*",
"src/types/**/*"
],
"exclude": [
"src/**/*.mts",
"src/**/*.cts",
"node_modules",
"node_modules/**/*",
"public/types"
],
"ts-node": {
// It is faster to skip typechecking.
// Remove if you want ts-node to do typechecking.
Expand Down

0 comments on commit 6ab1734

Please sign in to comment.