Skip to content

Commit ef74fde

Browse files
committed
chore: fix eslint OOMing my workspace
1 parent 8125879 commit ef74fde

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

site/.eslintrc.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ parser: "@typescript-eslint/parser"
1818
parserOptions:
1919
ecmaVersion: 2018
2020
project:
21-
- ./tsconfig.prod.json
22-
- ./tsconfig.test.json
21+
- ./tsconfig.json
2322
sourceType: module
2423
ecmaFeatures:
2524
jsx: true

site/jest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1+
const maxWorkers = process.env.CI ? 16 : 2
2+
13
module.exports = {
4+
maxWorkers,
25
projects: [
36
{
47
globals: {

0 commit comments

Comments
 (0)