Skip to content

Commit

Permalink
fix: skip typechecking cjs and mjs files
Browse files Browse the repository at this point in the history
  • Loading branch information
henribru authored Oct 23, 2024
1 parent aaca88c commit 621e0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
]
Expand Down

0 comments on commit 621e0be

Please sign in to comment.