@geajs/vite-plugin 1.0.11 → 1.0.13

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -74,7 +74,7 @@ The plugin injects HMR support that preserves component state across edits. When
74
74
 
75
75
  ### TypeScript Setup
76
76
 
77
- When a `tsconfig.json` is present, the plugin automatically adds `gea-env.d.ts` to the `compilerOptions.types` array, providing JSX type definitions for Gea.
77
+ Gea provides JSX type-checking via TypeScript's `jsxImportSource`. When your `tsconfig.json` includes `"jsx": "react-jsx"` and `"jsxImportSource": "@geajs/core"`, editors get full prop autocompletion, type errors on invalid attributes, and hover types — without any framework-specific plugin. The plugin also adds `gea-env.d.ts` to the `compilerOptions.types` array for additional type support.
78
78
 
79
79
  ### Virtual Module
80
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geajs/vite-plugin",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Vite plugin for Gea framework - JSX/TSX transform, reactivity, HMR",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",