brainy/tsconfig.browser.json
David Snelling 151aeb1e87 **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.
2025-06-23 10:58:29 -07:00

30 lines
551 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"strict": true,
"declaration": false,
"outDir": "./dist",
"rootDir": ".",
"lib": [
"DOM",
"ESNext"
],
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"preserveConstEnums": true,
"sourceMap": true
},
"include": [
"src/**/*",
"demo/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}