2 Commits

Author SHA1 Message Date
5fc5f6a18c Add next-env.d.ts to .gitignore (#47)
* Remove next-env

* Add next env to gitignore

* Add typegen to test script
2025-11-04 09:23:43 +03:00
48454f0847 Update storybook to v10 (#45)
* Update all dependencies to v10

* Update module resolution in tsconfig

* Update all dependencies to v10

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Vitaly Rtishchev <rtivital@gmail.com>
2025-11-02 19:10:49 +03:00
3 changed files with 3 additions and 8 deletions

1
.gitignore vendored
View File

@ -130,3 +130,4 @@ dist
.pnp.* .pnp.*
.DS_Store .DS_Store
next-env.d.ts

6
next-env.d.ts vendored
View File

@ -1,6 +0,0 @@
/// <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", "jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"", "prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"", "prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest", "test": "npx next typegen && npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006", "storybook": "storybook dev -p 6006",
"storybook:build": "storybook build" "storybook:build": "storybook build"
}, },