File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ "use client"
2+
13import Image from "next/image" ;
24import Background from '@components/background/background' ;
35import Clock from "@components/clock/Clock" ;
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "target" : " es2022" ,
4- "lib" : [" dom" , " dom.iterable" , " es2022" ],
4+ "lib" : [
5+ " dom" ,
6+ " dom.iterable" ,
7+ " es2022"
8+ ],
59 "allowJs" : true ,
610 "skipLibCheck" : true ,
711 "strict" : true ,
1115 "moduleResolution" : " bundler" ,
1216 "resolveJsonModule" : true ,
1317 "isolatedModules" : true ,
14- "jsx" : " preserve " ,
18+ "jsx" : " react-jsx " ,
1519 "incremental" : true ,
1620 "sourceMap" : true ,
1721 "noImplicitAny" : true ,
2226 }
2327 ],
2428 "paths" : {
25- "@components/*" : [" ./src/components/*" ],
26- "@models/*" : [" ./src/models/*" ],
27- "@services/*" : [" ./src/services/*" ],
28- "@hooks/*" : [" ./src/hooks/*" ],
29- "@/*" : [" ./src/*" ],
30- "image/*" : [" ./public/image/*" ],
31- "svg/*" : [" ./public/svg/*" ],
32- "@config/*" : [" ./public/config/*" ],
33- "@audio/*" : [" ./public/audio/*" ],
34- "@app/*" : [" ./src/app/*" ],
35- "public/*" : [" ./public/*" ]
29+ "@components/*" : [
30+ " ./src/components/*"
31+ ],
32+ "@models/*" : [
33+ " ./src/models/*"
34+ ],
35+ "@services/*" : [
36+ " ./src/services/*"
37+ ],
38+ "@hooks/*" : [
39+ " ./src/hooks/*"
40+ ],
41+ "@/*" : [
42+ " ./src/*"
43+ ],
44+ "image/*" : [
45+ " ./public/image/*"
46+ ],
47+ "svg/*" : [
48+ " ./public/svg/*"
49+ ],
50+ "@config/*" : [
51+ " ./public/config/*"
52+ ],
53+ "@audio/*" : [
54+ " ./public/audio/*"
55+ ],
56+ "@app/*" : [
57+ " ./src/app/*"
58+ ],
59+ "public/*" : [
60+ " ./public/*"
61+ ]
3662 }
3763 },
3864 "include" : [
3965 " next-env.d.ts" ,
4066 " **/*.ts" ,
4167 " **/*.tsx" ,
4268 " .next/types/**/*.ts" ,
43- " src/**/*.d.ts"
69+ " src/**/*.d.ts" ,
70+ " .next/dev/types/**/*.ts"
4471 ],
45- "exclude" : [" node_modules" , " ./tsconfig.json" ]
46- }
72+ "exclude" : [
73+ " node_modules" ,
74+ " ./tsconfig.json"
75+ ]
76+ }
You can’t perform that action at this time.
0 commit comments