add proper types to store
CI / build (push) Successful in 9s
CI / lint (push) Successful in 10s
CI / create-and-publish-docker-image (push) Successful in 11s

This commit is contained in:
2026-06-27 22:54:31 +02:00
parent 2979302e64
commit f9f1757ec0
5 changed files with 35 additions and 17 deletions
+7 -8
View File
@@ -14,15 +14,14 @@
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@components/*": ["src/components/*"],
"@store/*": ["src/store/*"],
"@api/*": ["src/api/*"],
"@types/*": ["src/types/*"],
"@thunks/*": ["src/store/thunks/*"],
"@slices/*": ["src/store/slices/*"]
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@store/*": ["./src/store/*"],
"@api/*": ["./src/api/*"],
"@types/*": ["./src/types/*"],
"@thunks/*": ["./src/store/thunks/*"],
"@slices/*": ["./src/store/slices/*"]
},
/* Linting */