From 621e0be337448eee1affeac3b2832373cf642415 Mon Sep 17 00:00:00 2001 From: henribru <6639509+henribru@users.noreply.github.com> Date: Wed, 23 Oct 2024 08:18:57 +0200 Subject: [PATCH] fix: skip typechecking cjs and mjs files --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e202374..85f5aaa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -48,7 +48,7 @@ export default function createConfig({ const projectServiceConfigs: ConfigArray = [ { name: 'vue-typescript/skip-type-checking-for-js-files', - files: ['**/*.js', '**/*.jsx'], + files: ['**/*.js', '**/*.jsx', '**/*.cjs', '**/*.mjs'], ...tseslint.configs.disableTypeChecked, }, ]