File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -224,4 +224,4 @@ src/ui/next-env.d.ts
224224! tsconfig. * .json
225225! src /ui /lib
226226! src /ui /public /manifest.json
227- .eslintcache
227+ .eslintcache
File renamed without changes.
Original file line number Diff line number Diff line change 99 "type-check" : " tsc -p src/ui/tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit && tsc -p tsconfig.cypress.json --noEmit" ,
1010 "format" : " prettier --write ." ,
1111 "prepare" : " husky" ,
12- "test" : " jest --config jest.config.js tests/ui" ,
12+ "test" : " jest --config jest.config.cjs tests/ui" ,
1313 "test:watch" : " jest --watch tests/ui" ,
14- "test:unit" : " jest --config jest.config.js tests/ui/unit" ,
15- "test:integration" : " jest --config jest.config.js tests/ui/integration" ,
14+ "test:unit" : " jest --config jest.config.cjs tests/ui/unit" ,
15+ "test:integration" : " jest --config jest.config.cjs tests/ui/integration" ,
1616 "test:e2e" : " cypress run --headless" ,
17- "coverage" : " jest --config jest.config.js --coverage tests/ui" ,
17+ "coverage" : " jest --config jest.config.cjs --coverage tests/ui" ,
1818 "coverage:badge" : " jest-coverage-badges --input coverage/coverage-summary.json --output coverage/.coverage"
1919 },
2020 "dependencies" : {
Original file line number Diff line number Diff line change 1- import type { StaticImageData } from 'next/image' ;
21declare module '*.ttf' ;
32
43declare module '*.otf' ;
5-
6- declare module '*.png' {
7- const content : StaticImageData ;
8- export default content ;
9- }
Original file line number Diff line number Diff line change 1+ import type { StaticImageData } from 'next/image' ;
2+
3+ declare module '*.png' {
4+ const content : StaticImageData ;
5+ export default content ;
6+ }
You can’t perform that action at this time.
0 commit comments