diff --git a/src/cli/utils/CLIUtils.ts b/src/cli/utils/CLIUtils.ts index a0a1a3495..f52a3a6e0 100644 --- a/src/cli/utils/CLIUtils.ts +++ b/src/cli/utils/CLIUtils.ts @@ -10,7 +10,9 @@ export class CLIUtils { */ public static readonly allowedConfigFileExtensions: string[] = [ '.js', - '.json' + '.json', + '.mjs', + '.cjs' ]; /** @@ -24,7 +26,7 @@ export class CLIUtils { const isValidExtension: boolean = CLIUtils.allowedConfigFileExtensions.includes(configFileExtension); if (!isValidExtension) { - throw new ReferenceError('Given config path must be a valid `.js` or `.json` file path'); + throw new ReferenceError('Given config path must be a valid `.js|.mjs|.cjs` or `.json` file path'); } try {