From 776f6a782f5d998adcae2f5c7caaa08322ed716b Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Mon, 9 Jan 2023 17:02:58 -0800 Subject: [PATCH] build(typescript): make TS happy --- src/manifest-creation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/manifest-creation.ts b/src/manifest-creation.ts index fe8ecdd0..405d328d 100644 --- a/src/manifest-creation.ts +++ b/src/manifest-creation.ts @@ -37,6 +37,7 @@ export class ManifestCreation { manifest = yaml.safeLoad(file); } catch (error) { // App config does not exist, which is ok. + // @ts-ignore - in theory error can be anything if (error.code !== "ENOENT") { throw error; }