Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
fix: add template parameters to request methods (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
awwit authored Jan 10, 2024
1 parent 8847df9 commit 6d2ef63
Show file tree
Hide file tree
Showing 8 changed files with 462 additions and 326 deletions.
7 changes: 0 additions & 7 deletions .eslintrc.cjs

This file was deleted.

11 changes: 11 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": { "project": ["./tsconfig.json"] },
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
}
6 changes: 6 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ const config: Config = {
preset: 'ts-jest',
restoreMocks: true,
testEnvironment: 'node',
transform: {
'^.+\\.ts$': [
'ts-jest',
{ diagnostics: { ignoreCodes: ['TS151001'] } }
],
},
};

export default config;
Loading

0 comments on commit 6d2ef63

Please sign in to comment.