File tree Expand file tree Collapse file tree 2 files changed +20
-6
lines changed
Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 11/// <reference types="next" />
22/// <reference types="next/image-types/global" />
3+ import "./.next/types/routes.d.ts" ;
34
45// NOTE: This file should not be edited
56// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "target" : " ES2017" ,
4- "lib" : [" dom" , " dom.iterable" , " esnext" ],
4+ "lib" : [
5+ " dom" ,
6+ " dom.iterable" ,
7+ " esnext"
8+ ],
59 "allowJs" : true ,
610 "skipLibCheck" : true ,
711 "strict" : true ,
1317 "moduleResolution" : " bundler" ,
1418 "resolveJsonModule" : true ,
1519 "isolatedModules" : true ,
16- "jsx" : " preserve " ,
20+ "jsx" : " react-jsx " ,
1721 "baseUrl" : " ." ,
1822 "paths" : {
19- "@/*" : [" ./*" ]
23+ "@/*" : [
24+ " ./*"
25+ ]
2026 },
2127 "strictNullChecks" : true ,
22- "plugins" : [{ "name" : " next" }],
28+ "plugins" : [
29+ {
30+ "name" : " next"
31+ }
32+ ],
2333 "erasableSyntaxOnly" : true
2434 },
2535 "include" : [
3040 " tailwind.config.ts" ,
3141 " prettier.config.ts" ,
3242 " postcss.config.mjs" ,
33- " .next/types/**/*.ts"
43+ " .next/types/**/*.ts" ,
44+ " .next/dev/types/**/*.ts"
3445 ],
35- "exclude" : [" node_modules" ]
46+ "exclude" : [
47+ " node_modules"
48+ ]
3649}
You can’t perform that action at this time.
0 commit comments