Skip to content

Commit

Permalink
fix: Eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Mar 26, 2024
1 parent 887f85a commit 7414d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detectors/typeChecker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export class TsProjectDetector extends ProjectBasedDetector {
.map((res) => {
if (res && !res.endsWith(".js")) {
const chunks = res?.split(".");
chunks.splice(-1, 1, "js")
chunks.splice(-1, 1, "js");
res = chunks.join(".");
}
return res;
Expand Down

0 comments on commit 7414d89

Please sign in to comment.