Files
exploRUGComponent/tsconfig.json
dikshya b95ab43425 Refactor RoomView component to MyRoom; update imports and related references
- Removed RoomIllustration component and replaced it with MyRoom component in RoomView.
- Updated import paths in exploRUG, roomView-react, and tsconfig.json to reflect the new component structure.
- Enhanced WindowExtended interface in canvasutils to include ordersheet properties.
- Modified convertArrIntoRad function to accept any type for input array.
- Cleaned up encoding function for colors to improve readability.
2026-04-24 14:41:09 +05:45

35 lines
886 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/MyRoom/helpers/RoomViewHelper.js"],
"exclude": []
}