From eef1c39d02f873733c6bbaced7a49ebab554fcd6 Mon Sep 17 00:00:00 2001 From: Yavor Ivanov Date: Tue, 26 Mar 2024 17:30:42 +0200 Subject: [PATCH] fix: Eslint --- src/detectors/typeChecker/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detectors/typeChecker/index.ts b/src/detectors/typeChecker/index.ts index 86a99da84..2cda29b99 100644 --- a/src/detectors/typeChecker/index.ts +++ b/src/detectors/typeChecker/index.ts @@ -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;