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
224
224
! tsconfig. * .json
225
225
! src /ui /lib
226
226
! src /ui /public /manifest.json
227
- .eslintcache
227
+ .eslintcache
File renamed without changes.
Original file line number Diff line number Diff line change 9
9
"type-check" : " tsc -p src/ui/tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit && tsc -p tsconfig.cypress.json --noEmit" ,
10
10
"format" : " prettier --write ." ,
11
11
"prepare" : " husky" ,
12
- "test" : " jest --config jest.config.js tests/ui" ,
12
+ "test" : " jest --config jest.config.cjs tests/ui" ,
13
13
"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" ,
16
16
"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" ,
18
18
"coverage:badge" : " jest-coverage-badges --input coverage/coverage-summary.json --output coverage/.coverage"
19
19
},
20
20
"dependencies" : {
Original file line number Diff line number Diff line change 1
- import type { StaticImageData } from 'next/image' ;
2
1
declare module '*.ttf' ;
3
2
4
3
declare 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