--
Some checks failed
Deploy / DeployService (push) Blocked by required conditions
Deploy / CreateImage (push) Failing after 18m56s

This commit is contained in:
Nastya 2025-07-17 15:40:55 +03:00
parent 1169a6644c
commit d05e32d6d0
3 changed files with 3 additions and 10 deletions

@ -7,7 +7,7 @@
"build": "craco build",
"build:check": "tsc --noEmit && craco build",
"type-check": "tsc --noEmit",
"type-check:strict": "tsc --noEmit --strict --noImplicitAny --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"type-check:strict": "tsc --noEmit --strict",
"pre-commit": "npm run type-check",
"test": "craco test --env=node --transformIgnorePatterns \"node_modules/(?!@frontend)/\"",
"test:cart": "vitest ./src/utils/calcCart",

@ -12,7 +12,7 @@ import type {
type RecoverResponse = {
message: string;
};
//tsignore
const API_URL = `${process.env.REACT_APP_DOMAIN}/auth`;
export const register = async (

@ -16,14 +16,7 @@
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noPropertyAccessFromIndexSignature": true
"jsx": "react-jsx"
},
"include": ["src", "**/*.ts"]
}