- 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.
35 lines
886 B
JSON
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": []
|
|
}
|