Files
exploRUGComponent/tsconfig.json
dikshya daaa5bd7ad 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.
2026-04-22 16:49:03 +05:45

35 lines
888 B
JSON

{
"compilerOptions": {
"target": "es2021",
"module": "es2020",
"lib": ["es2021", "DOM", "DOM.Iterable"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"inlineSources": true,
"outDir": "./",
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true
}
],
"types": ["mocha"]
},
"include": ["src/**/*.ts", "src/Components/RoomView/helpers/RoomViewHelper.js"],
"exclude": []
}