Skip to content

Commit

Permalink
chore: disable noImplicitAny for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nd0ut committed Feb 16, 2024
1 parent c64f2ee commit 050aacd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
"resolveJsonModule": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": ["jest-extended", "jest", "node"]
"esModuleInterop": true
},
"exclude": ["node_modules"]
"exclude": ["node_modules", "**/*.test.ts"],
"references": [
{ "path": "./tsconfig.test.json" },
]
}
6 changes: 6 additions & 0 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"compilerOptions": {
"noImplicitAny": false
},
"include": ["**/*.test.ts"]
}

0 comments on commit 050aacd

Please sign in to comment.