Skip to content

Commit

Permalink
chore(reporter): fixes compile erros
Browse files Browse the repository at this point in the history
  • Loading branch information
allemanfredi committed Oct 27, 2023
1 parent 5d1cac5 commit c2e7dff
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/reporter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@types/node": "^20.8.9",
"@types/node-cron": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
Expand Down
16 changes: 12 additions & 4 deletions packages/reporter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es6", "ESNext"],
"lib": [
"es6",
"ESNext",
"DOM"
],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
Expand All @@ -17,6 +21,10 @@
"strict": true,
"target": "ESNext"
},
"exclude": ["node_modules"],
"include": ["./src/**/*"]
}
"exclude": [
"node_modules"
],
"include": [
"./src/**/*"
]
}
20 changes: 10 additions & 10 deletions packages/reporter/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -287,12 +287,12 @@ __metadata:
languageName: node
linkType: hard

"@types/node@npm:^20.8.6":
version: 20.8.6
resolution: "@types/node@npm:20.8.6"
"@types/node@npm:^20.8.9":
version: 20.8.9
resolution: "@types/node@npm:20.8.9"
dependencies:
undici-types: ~5.25.1
checksum: ccfb7ac482c5a96edeb239893c5c099f5257fcc2ed9ae62fefdfbc782b79e16dbc2af9a85b379665237bf759904b44ca2be68e75d239e0297882aad42f61905c
undici-types: ~5.26.4
checksum: 0c05f3502a9507ff27e91dd6fd574fa6f391b3fafedcfe8e0c8d33351fb22d02c0121f854e5b6b3ecb9a8a468407ddf6e7ac0029fb236d4c7e1361ffc758a01f
languageName: node
linkType: hard

Expand Down Expand Up @@ -2200,7 +2200,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "reporter@workspace:."
dependencies:
"@types/node": ^20.8.6
"@types/node": ^20.8.9
"@types/node-cron": ^3.0.9
"@typescript-eslint/eslint-plugin": ^6.7.5
"@typescript-eslint/parser": ^6.7.5
Expand Down Expand Up @@ -2615,10 +2615,10 @@ __metadata:
languageName: node
linkType: hard

"undici-types@npm:~5.25.1":
version: 5.25.3
resolution: "undici-types@npm:5.25.3"
checksum: ec9d2cc36520cbd9fbe3b3b6c682a87fe5be214699e1f57d1e3d9a2cb5be422e62735f06e0067dc325fd3dd7404c697e4d479f9147dc8a804e049e29f357f2ff
"undici-types@npm:~5.26.4":
version: 5.26.5
resolution: "undici-types@npm:5.26.5"
checksum: 3192ef6f3fd5df652f2dc1cd782b49d6ff14dc98e5dced492aa8a8c65425227da5da6aafe22523c67f035a272c599bb89cfe803c1db6311e44bed3042fc25487
languageName: node
linkType: hard

Expand Down

0 comments on commit c2e7dff

Please sign in to comment.