From 7414d89fd040e594475bbc1db9b5a6e6333e7957 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 0275df0c5..4a62bdc49 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;