Skip to content

Commit

Permalink
fix(): ignore denoVitestPolyfill in nodejs tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
syhol committed Dec 14, 2023
1 parent cf847b6 commit 54cba10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
root: true,
ignorePatterns: ['.eslintrc.cjs'],
ignorePatterns: ['.eslintrc.cjs', 'denoVitestPolyfill.ts'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
Expand Down
3 changes: 2 additions & 1 deletion library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"skipLibCheck": true,
"noEmit": true
},
"include": ["src", "./*.config.ts"]
"include": ["src", "./*.config.ts"],
"exclude": ["src/testUtils/denoVitestPolyfill.ts"]
}

0 comments on commit 54cba10

Please sign in to comment.