**chore: update tsconfig paths and bump version**

### Changes:
- **tsconfig.browser.json**:
  - Replaced `examples/**/*` with `demo/**/*` in the `include` paths.
- **src/utils/version.ts**:
  - Updated `VERSION` constant from `0.9.1` to `0.9.2`.

### Purpose:
Aligned the TypeScript configuration with the recent folder structure update for better organization. Incremented the version to `0.9.2` to reflect the latest improvements.
This commit is contained in:
David Snelling 2025-06-23 10:58:29 -07:00
parent f27d2739ac
commit 151aeb1e87
2 changed files with 2 additions and 2 deletions

View file

@ -3,4 +3,4 @@
* Do not modify this file directly.
*/
export const VERSION = '0.9.1';
export const VERSION = '0.9.2';

View file

@ -20,7 +20,7 @@
},
"include": [
"src/**/*",
"examples/**/*"
"demo/**/*"
],
"exclude": [
"node_modules",