Skip to content

Commit 995f89b

Browse files
committed
fix linting config
1 parent 7f35773 commit 995f89b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

packages/utils/.eslintrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
11
module.exports = {
22
extends: ['../../.eslintrc.js'],
3+
overrides: [
4+
{
5+
files: ['scripts/**/*.ts'],
6+
parserOptions: {
7+
project: ['../../tsconfig.dev.json'],
8+
},
9+
},
10+
{
11+
files: ['test/**'],
12+
parserOptions: {
13+
sourceType: 'module',
14+
},
15+
},
16+
],
17+
// symlinks to the folders inside of `build`, created to simulate what's in the npm package
18+
ignorePatterns: ['cjs/**', 'esm/**'],
319
};

0 commit comments

Comments
 (0)