mirror of
https://github.com/Hypfer/Valetudo.git
synced 2025-10-26 11:27:27 +00:00
* Move frontend to old_frontend * feat: copy client from Jomik/valetudo-ui * chore(lint): apply linter rules * chore(config): switch to yaml * chore: fix backend type checks * chore: add frontend type check * chore: remove unneeded item on Grid * refactor: split HomePage * feat: show system info * fix: use correct node version after rebase * chore: build frontend in actions * feat: upgrade to material ui 5 * feat(frontend): upgrade dependencies * update package-lock.json * Change title * Fix ts-check * Keep the old UI as the default for now * Remove development server * Make deepscan happy * Make deepscan happy * properly remove development server * Remove web vitals * Make the typescript compiler happy * Fix map zoom out * Allow dynamic relative paths * Nicer map zoom values * Increase visibility of spring bottom sheet handle * Improve map render performance * Reformat code * Add eslint script * 4 spaces > 2 spaces * Remove comments * Formatting * Backend formatting * Allow the client-side router to work * Remove obsolete readme.md * Add cra-build-watch * Lint fix * Formatting Co-authored-by: Jonas Holst Damtoft <jonasdamtoft@gmail.com>
21 lines
503 B
JSON
21 lines
503 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src"]
|
|
}
|