jeasx 2.4.4 → 2.4.6

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
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-04-02 - Jeasx 2.4.6 released
4
+
5
+ 🎉 This release updates the `tsconfig.json` settings to fully support the latest TypeScript 6 changes. Now, the latest version of VSCode runs smoothly without any warnings.
6
+
7
+ Dependency updates: `esbuild@0.27.7`
8
+
9
+ ## 2026-03-25 - Jeasx 2.4.5 released
10
+
11
+ 🎉 Just a patch update to stay synced with latest `jsx-async-runtime`.
12
+
13
+ Dependency updates: `jsx-async-runtime@2.1.0`
14
+
3
15
  ## 2026-03-23 - Jeasx 2.4.4 released
4
16
 
5
17
  🎉 Just a patch release to update Fastify to fix [CVE-2026-3635](https://github.com/fastify/fastify/security/advisories/GHSA-444r-cwp2-x5xf).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jeasx",
3
- "version": "2.4.4",
3
+ "version": "2.4.6",
4
4
  "description": "Jeasx - the ease of JSX with the power of SSR",
5
5
  "keywords": [
6
6
  "async",
@@ -34,8 +34,8 @@
34
34
  "@fastify/multipart": "9.4.0",
35
35
  "@fastify/static": "9.0.0",
36
36
  "@types/node": "25.5.0",
37
- "esbuild": "0.27.4",
37
+ "esbuild": "0.27.7",
38
38
  "fastify": "5.8.4",
39
- "jsx-async-runtime": "2.0.3"
39
+ "jsx-async-runtime": "2.1.0"
40
40
  }
41
41
  }
package/tsconfig.json CHANGED
@@ -3,6 +3,9 @@
3
3
  "module": "esnext",
4
4
  "moduleResolution": "bundler",
5
5
  "target": "esnext",
6
+ "types": ["*"],
7
+ "strict": false,
8
+ "rootDir": "../../src",
6
9
  "outDir": "../../dist",
7
10
  "allowJs": true,
8
11
  "checkJs": true,
@@ -13,5 +16,6 @@
13
16
  "isolatedModules": true,
14
17
  "resolveJsonModule": true
15
18
  },
19
+ "include": ["../../src"],
16
20
  "exclude": ["../../dist"]
17
21
  }