fix(ui): fix setup

This commit is contained in:
Lukasz Mierzwa
2026-03-09 14:57:27 +00:00
committed by Łukasz Mierzwa
parent 60c04025dd
commit eae1bc27ed
3 changed files with 3 additions and 8 deletions

View File

@@ -1,3 +0,0 @@
PUBLIC_URL=.
FAST_REFRESH=false
SKIP_PREFLIGHT_CHECK=true

View File

@@ -1,6 +1,6 @@
import React, { use, FC, useEffect } from "react";
import type { StylesConfig } from "react-select/dist/declarations/src/styles";
import type { StylesConfig } from "react-select";
export interface ThemeCtx {
isDark: boolean;

View File

@@ -2,14 +2,12 @@
"compilerOptions": {
"baseUrl": "src",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"module": "preserve",
"moduleResolution": "bundler",
"lib": ["dom", "dom.iterable", "esnext"],
"types": ["vite/client", "jest", "node"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,