eslint-config-efe13 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  Todas las notas de cambios para `eslint-config-efe13`.
4
4
 
5
+ ## [1.2.1] - 2026-09-10
6
+
7
+ - fix: Pinea `typescript@~6.0.0` en todos los presets — `typescript-eslint` soporta `>=4.8.4 <6.1.0` y con `typescript@7` abortaba antes de evaluar cualquier regla (`npm run lint` y `--print-config` fallaban sin producir configuración).
8
+ - feat: Instala `@typescript/native-preview` en todos los presets — `tsgo` (compilador nativo de TS 7) queda disponible para builds/typechecks rápidos mientras `typescript-eslint` no soporta TS 7.
9
+
5
10
  ## [1.2.0] - 2026-09-10
6
11
 
7
12
  - fix(backend-ts): Reemplaza `eslint-config-semistandard` por `neostandard`. Semistandard es config eslintrc legacy: su peer `eslint ^8` rompía la instalación con npm (`ERESOLVE` contra ESLint 9) y sus `.rules` solo contenían `semi`/`no-extra-semi`, con lo que el ruleset Standard nunca se aplicaba en flat config.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-efe13",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "eslint-config-efe13": "bin/index.js"
package/src/deps.js CHANGED
@@ -1,5 +1,8 @@
1
1
  // eslint@^9: neostandard, eslint-plugin-import, eslint-plugin-react y
2
2
  // eslint-plugin-jsx-a11y aún no soportan ESLint 10 — quitar el pin cuando lo hagan.
3
+ // typescript@~6.0.0: typescript-eslint soporta <6.1.0 — TS 7 aborta el lint.
4
+ // @typescript/native-preview instala tsgo (compilador nativo de TS 7) para
5
+ // builds/typechecks rápidos mientras tanto.
3
6
  export const depsByFramework = {
4
7
  nextjs: [
5
8
  "eslint@^9",
@@ -15,7 +18,8 @@ export const depsByFramework = {
15
18
  "eslint-plugin-react-hooks",
16
19
  "prettier",
17
20
  "prettier-plugin-tailwindcss",
18
- "typescript",
21
+ "typescript@~6.0.0",
22
+ "@typescript/native-preview",
19
23
  "typescript-eslint",
20
24
  "globals",
21
25
  ],
@@ -30,7 +34,8 @@ export const depsByFramework = {
30
34
  "eslint-plugin-react-hooks",
31
35
  "prettier",
32
36
  "prettier-plugin-tailwindcss",
33
- "typescript",
37
+ "typescript@~6.0.0",
38
+ "@typescript/native-preview",
34
39
  "typescript-eslint",
35
40
  "globals",
36
41
  ],
@@ -42,6 +47,7 @@ export const depsByFramework = {
42
47
  "eslint-plugin-prettier",
43
48
  "neostandard",
44
49
  "prettier",
45
- "typescript",
50
+ "typescript@~6.0.0",
51
+ "@typescript/native-preview",
46
52
  ],
47
53
  };