### 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.
30 lines
551 B
JSON
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"
|
|
]
|
|
}
|