File tree Expand file tree Collapse file tree
components/home/LandingSection Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import MyLink from '@/components/common/MyLink'
44import { GITHUB_PROFILE_LINK } from '@/constants/project'
55import { HOMEPAGE_DESCRIPTION } from '@/constants/metadata'
66import Image from 'next/image'
7- // @ts -expect-error Ignore import error for image file
87import waveImage from '@public/assets/home/wave.webp'
98
109export default function LandingSection ( ) {
Original file line number Diff line number Diff line change 11import type { StaticImageData } from 'next/image'
22import type { TechStackName } from './techstack'
33
4- // @ts -expect-error Ignore import error for image file
54import randomSeatScreenshot from '@public/assets/projects/thumbnail/random-seat.webp'
6- // @ts -expect-error Ignore import error for image file
75import lottoGeneratorScreenshot from '@public/assets/projects/thumbnail/lotto-generator.webp'
8- // @ts -expect-error Ignore import error for image file
96import daySummaryScreenshot from '@public/assets/projects/thumbnail/day-summarry.webp'
107
118export type ProjectData = {
Original file line number Diff line number Diff line change 1111 "moduleResolution" : " bundler" ,
1212 "resolveJsonModule" : true ,
1313 "isolatedModules" : true ,
14- "jsx" : " preserve " ,
14+ "jsx" : " react-jsx " ,
1515 "incremental" : true ,
1616 "verbatimModuleSyntax" : true ,
1717 "plugins" : [
2929 " **/*.ts" ,
3030 " **/*.tsx" ,
3131 " .next/types/**/*.ts" ,
32- " out/types/**/*.ts"
32+ " out/types/**/*.ts" ,
33+ " .next/dev/types/**/*.ts"
3334 ],
3435 "exclude" : [" node_modules" ]
3536}
You can’t perform that action at this time.
0 commit comments