refactor(all): complete rewrite

This commit is contained in:
z0x 2025-02-04 23:37:40 -05:00
parent 9f928f4786
commit 757d21f0e8
67 changed files with 4053 additions and 974 deletions

View file

@ -1,12 +1,12 @@
{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@*": ["./src/*"]
}
}
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}