File tree Expand file tree Collapse file tree 6 files changed +24
-16
lines changed Expand file tree Collapse file tree 6 files changed +24
-16
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11node_modules
22.next
33. * env
4+ next-env.d.ts
45.react-email
56.DS_Store
Original file line number Diff line number Diff line change 1+ import { defineConfig } from "eslint/config" ;
2+ import nextCoreWebVitals from "eslint-config-next/core-web-vitals" ;
3+ import path from "node:path" ;
4+ import { fileURLToPath } from "node:url" ;
5+
6+ const __filename = fileURLToPath ( import . meta. url ) ;
7+ const __dirname = path . dirname ( __filename ) ;
8+
9+ export default defineConfig ( [ {
10+ extends : [ ...nextCoreWebVitals ] ,
11+ } ] ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 "email:build" : " email build" ,
1010 "email:dev" : " email dev" ,
1111 "format" : " prettier src --write" ,
12- "lint" : " next lint " ,
12+ "lint" : " eslint . " ,
1313 "start" : " next start"
1414 },
1515 "dependencies" : {
1616 "@react-email/components" : " 0.5.7" ,
17- "next" : " 15.3.5 " ,
18- "react" : " 19.1 .0" ,
19- "react-dom" : " 19.1 .0" ,
17+ "next" : " 16.0.3 " ,
18+ "react" : " 19.2 .0" ,
19+ "react-dom" : " 19.2 .0" ,
2020 "resend" : " latest"
2121 },
2222 "devDependencies" : {
2323 "@react-email/preview-server" : " 4.3.2" ,
2424 "@types/node" : " 20.19.2" ,
25- "@types/react" : " 19.1.8 " ,
26- "@types/react-dom" : " 19.1.6 " ,
27- "eslint" : " 8.56.0 " ,
25+ "@types/react" : " 19.2.5 " ,
26+ "@types/react-dom" : " 19.2.3 " ,
27+ "eslint" : " ^9 " ,
2828 "eslint-config-next" : " 16.0.3" ,
2929 "prettier" : " 3.2.5" ,
3030 "react-email" : " 4.3.2" ,
3131 "typescript" : " 5.8.3"
32+ },
33+ "overrides" : {
34+ "@types/react" : " 19.2.5" ,
35+ "@types/react-dom" : " 19.2.3"
3236 }
3337}
Original file line number Diff line number Diff line change 1616 "moduleResolution" : " node" ,
1717 "resolveJsonModule" : true ,
1818 "isolatedModules" : true ,
19- "jsx" : " preserve " ,
19+ "jsx" : " react-jsx " ,
2020 "target" : " ES2017"
2121 },
2222 "include" : [
You can’t perform that action at this time.
0 commit comments