From 7730d9647c1b42850ec15df79b0a29242d3bc690 Mon Sep 17 00:00:00 2001 From: mfw78 <53399572+mfw78@users.noreply.github.com> Date: Wed, 17 Jan 2024 12:27:24 +0000 Subject: [PATCH] Update src/index.ts Co-authored-by: Leandro --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 03c74f6..45b67e4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -170,7 +170,7 @@ function validateJSON(filePath: string): Config { ); const validate = ajv.compile(schema); try { - // Read and prase the JSON file + // Read and parse the JSON file const data = JSON.parse(fs.readFileSync(filePath, "utf8")); // Validate the data against the schema