Skip to content

Commit

Permalink
fix(js): Make Eslint happy.
Browse files Browse the repository at this point in the history
Note that the global monorepo eslint runs on each package.
  • Loading branch information
SokratisVidros committed Dec 3, 2024
1 parent e09e631 commit b94d38c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/js/src/api/http-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export class HttpClient {
}

const res = await response.json();

return (unwrapEnvelope ? res.data : res) as Promise<T>;
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/js/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"removeComments": false
},
"include": ["src/**/*", "src/**/*.d.ts"],
"exclude": ["src/**/*.test.ts", "src/*.test.ts", "node_modules", "**/node_modules/*"]
"exclude": ["node_modules", "**/node_modules/*"]
}

0 comments on commit b94d38c

Please sign in to comment.