added initial blog tryings

This commit is contained in:
Philipp Neumann
2025-05-17 20:39:14 +02:00
parent baf178afc5
commit dc1b552ac1
36 changed files with 2252 additions and 0 deletions

15
apps/blog/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"strictNullChecks": true,
"jsx": "preserve",
"jsxImportSource": "solid-js"
}
}