chore: update dependencies and enhance TypeScript configuration for Astro example (#128)

This commit is contained in:
Cameron Pak
2025-04-01 05:58:13 -05:00
committed by GitHub
parent 3f26c45dd9
commit 2f067451b4
2 changed files with 11 additions and 7 deletions

View File

@@ -11,13 +11,13 @@
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^3.6.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@astrojs/react": "^4.2.2",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"astro": "^4.16.16",
"bknd": "file:../../app",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.7.2"
}
}

View File

@@ -1,3 +1,7 @@
{
"extends": "astro/tsconfigs/strict"
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}