4 Commits

Author SHA1 Message Date
fdd5caaa9e Fix errors 2025-11-02 19:08:23 +03:00
4b76ea6fd8 Update all dependencies to v10 2025-11-02 07:15:08 +00:00
531f476ed0 Update module resolution in tsconfig 2025-11-02 10:12:33 +03:00
d93f938bc9 Update all dependencies to v10 2025-11-02 01:10:55 +00:00
3 changed files with 8 additions and 3 deletions

3
.gitignore vendored
View File

@ -129,5 +129,4 @@ dist
.yarn/install-state.gz
.pnp.*
.DS_Store
next-env.d.ts
.DS_Store

6
next-env.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@ -15,7 +15,7 @@
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npx next typegen && npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},