mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-10 18:25:42 +00:00
7c8d9e2db1
* Update README.md Some notes for people that might want to run full-on native, with detail about how Mac hijacks port 7000 and how to get around it. * Revert "Update README.md" This reverts commit 096887c26d591f93a836ef808c148af09767f2d2. * README update and native code patch Some details for user that might be running Python3, Mac, and want to run everything locally/natively. * Implement basic tooltips Uses MUI tooltip, as it behaves more predictably with existing styling, and enables top-level theme config. Top-level configuration for all MUI components can be controlled via overriding the existing theme. See index.tsx. This could be done per user for customization, etc. Enabling JSON module imports in tsconfig.json seemed to fix the error in ReactDiagramEditor * get docs from main that have already been merged from tcoz and tweaked * created SpiffTooltip component so we can change how tooltips operate across the board w/ burnettk * update tooltip title copy * remove arrow not needed in caller * types and wording --------- Co-authored-by: Tim Consolazio <tcoz@tcoz.com> Co-authored-by: burnettk <burnettk@users.noreply.github.com> Co-authored-by: jasquat <jasquat@users.noreply.github.com>
14 lines
284 B
JSON
14 lines
284 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2021",
|
|
"resolveJsonModule": true,
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|