Skip to content

Commit 5bee280

Browse files
committed
04/02: add @types/node dependency
1 parent 2214114 commit 5bee280

File tree

6 files changed

+32
-80
lines changed

6 files changed

+32
-80
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"files": [],
33
"references": [
4-
{ "path": "tsconfig.edge.json" },
5-
{ "path": "tsconfig.app.json" },
6-
{ "path": "tsconfig.node.json" },
7-
{ "path": "tsconfig.test.edge.json" },
8-
{ "path": "tsconfig.test.json" }
4+
{ "path": "./tsconfig.edge.json" },
5+
{ "path": "./tsconfig.app.json" },
6+
{ "path": "./tsconfig.node.json" },
7+
{ "path": "./tsconfig.test.edge.json" },
8+
{ "path": "./tsconfig.test.json" }
99
]
1010
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"files": [],
33
"references": [
4-
{ "path": "tsconfig.edge.json" },
5-
{ "path": "tsconfig.app.json" },
6-
{ "path": "tsconfig.node.json" },
7-
{ "path": "tsconfig.test.edge.json" },
8-
{ "path": "tsconfig.test.json" }
4+
{ "path": "./tsconfig.edge.json" },
5+
{ "path": "./tsconfig.app.json" },
6+
{ "path": "./tsconfig.node.json" },
7+
{ "path": "./tsconfig.test.edge.json" },
8+
{ "path": "./tsconfig.test.json" }
99
]
1010
}

exercises/04.performance/02.problem.concurrency/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"test": "vitest"
66
},
77
"devDependencies": {
8+
"@types/node": "^24.3.0",
89
"vitest": "^3.1.1"
910
}
1011
}

exercises/04.performance/02.solution.concurrency/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"test": "vitest"
66
},
77
"devDependencies": {
8+
"@types/node": "^24.3.0",
89
"vitest": "^3.1.1"
910
}
1011
}

package-lock.json

Lines changed: 19 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
"setup:custom": "node ./epicshop/setup-custom.js",
3838
"lint": "eslint .",
3939
"format": "prettier --write .",
40-
"typecheck": "tsc -b",
41-
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
40+
"typecheck": "tsc -b"
4241
},
4342
"keywords": [],
4443
"author": "Artem Zakharchenko <[email protected]> (https://kettanaito.com/)",

0 commit comments

Comments
 (0)