diff --git a/apps/site/pages/en/download/package-manager/all.md b/apps/site/pages/en/download/package-manager/all.md index 20b56fa8fd845..5859d52200293 100644 --- a/apps/site/pages/en/download/package-manager/all.md +++ b/apps/site/pages/en/download/package-manager/all.md @@ -43,7 +43,23 @@ pacman -S nodejs npm ## CentOS, Fedora and Red Hat Enterprise Linux -Node.js is available as a module called `nodejs` in CentOS/RHEL 8 and Fedora. +Node.js and npm packages are available in the main Repository for Fedora and RHEL 10. + +It can be installed from a default stream which contains the currently active +LTS Node.js version. + +```bash +dnf install nodejs npm +``` + +Or from a specific stream for alternative, maintained versions (maintained versions +might differ between Fedora and various RHEL releases). + +```bash +dnf install nodejs24 +``` + +For older CentOS/RHEL releases Node.js is available as a module called `nodejs`. ```bash dnf module install nodejs: diff --git a/apps/site/tsconfig.json b/apps/site/tsconfig.json index dbb0784d61bda..a9ca81bd98594 100644 --- a/apps/site/tsconfig.json +++ b/apps/site/tsconfig.json @@ -14,19 +14,26 @@ "isolatedModules": true, "jsx": "preserve", "incremental": true, - "plugins": [{ "name": "next" }], + "plugins": [ + { + "name": "next" + } + ], "baseUrl": "." }, - "mdx": { "checkMdx": true }, + "mdx": { + "checkMdx": true + }, "include": [ - "**/*.ts", - "**/*.tsx", "**/*.js", - "**/*.mjs", "**/*.jsx", "**/*.mdx", + "**/*.mjs", + "**/*.ts", + "**/*.tsx", // Explicitly include since the globs won't match the `.` - ".stylelintrc.mjs" + ".stylelintrc.mjs", + ".next/types/**/*.ts" ], "exclude": ["node_modules", ".next"] }