Complete a blog tutorial

This commit is contained in:
Daisuke Nakahara 2025-01-14 21:17:35 +09:00
parent a14cb236e3
commit 4375b7c2e4
26 changed files with 2489 additions and 538 deletions

View file

@ -1,5 +1,14 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"]
}
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
}
}