feat: add RoomIllustrationReact component and update TypeScript configuration

- Introduced a new React component  in  that wraps the  element.
- Updated TypeScript configuration to change module resolution from \node\ to \bundler\ and included a new JavaScript file for type checking.
- Updated  to add new dependencies including , , and others for improved functionality and compatibility.
This commit is contained in:
2026-04-22 16:49:03 +05:45
parent 39ead94535
commit daaa5bd7ad
14 changed files with 3474 additions and 27 deletions

View File

@@ -16,7 +16,7 @@
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
@@ -29,6 +29,6 @@
],
"types": ["mocha"]
},
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "src/Components/RoomView/helpers/RoomViewHelper.js"],
"exclude": []
}