Skip to content

Commit db05944

Browse files
authored
Merge pull request #74 from bcomnes/dependabot/npm_and_yarn/typescript-574b0d5a74
Bump typescript from 5.9.3 to 6.0.3 in the typescript group across 1 directory
2 parents 1f395e4 + c199e43 commit db05944

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22

33
/**
4-
* @typedef {import('fs').Stats} Stats
4+
* @import { Stats } from 'node:fs'
55
*/
66

77
'use strict'
@@ -105,7 +105,9 @@ async function * asyncFolderWalker (dirs, opts) {
105105
// @ts-ignore
106106
const ig = ignore().add(resolvedOpts.ignore)
107107

108+
/** @type {string[]} */
108109
const roots = [dirs].flat().filter(resolvedOpts.pathFilter)
110+
/** @type {string[]} */
109111
const pending = []
110112

111113
while (roots.length) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"p-temporary-directory": "^2.0.1",
2121
"standard": "^17.0.0",
2222
"tap": "^21.1.1",
23-
"typescript": "~5.9.3"
23+
"typescript": "~6.0.3"
2424
},
2525
"peerDependencies": {
2626
"@types/node": "*"

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"compilerOptions": {
44
"allowJs": true,
55
"checkJs": true,
6+
"types": ["node"],
67
"noEmit": true,
78
"resolveJsonModule": true,
89
"skipLibCheck": false,

0 commit comments

Comments
 (0)