From 7212015cb4e37a319ad58c7db29fa0d2ca8c42d9 Mon Sep 17 00:00:00 2001 From: Uimalakki <65682281+Uimalakki@users.noreply.github.com> Date: Thu, 28 Aug 2025 10:26:20 +0300 Subject: [PATCH] Update part9c.md - removed unused @types/eslint__js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ESLint 9 moved to ESM and ships its own types. The @types/eslint__js installed here is basically a ghost (and with it TS complains it can’t find eslint__js). --- src/content/9/en/part9c.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/content/9/en/part9c.md b/src/content/9/en/part9c.md index 38bd9628c2..c005d96275 100644 --- a/src/content/9/en/part9c.md +++ b/src/content/9/en/part9c.md @@ -104,7 +104,7 @@ Now that we have set our configuration, we can continue by installing *express* ```shell npm install express -npm install --save-dev eslint @eslint/js typescript-eslint @stylistic/eslint-plugin @types/express @types/eslint__js +npm install --save-dev eslint @eslint/js typescript-eslint @stylistic/eslint-plugin @types/express ``` Now our *package.json* should look like this: @@ -123,7 +123,6 @@ Now our *package.json* should look like this: "devDependencies": { "@eslint/js": "^9.8.0", "@stylistic/eslint-plugin": "^2.6.1", - "@types/eslint__js": "^8.42.3", "@types/express": "^4.17.21", "eslint": "^9.8.0", "typescript": "^5.5.4",