Initial commit: Spark Platform with Cartesian SEO Engine

This commit is contained in:
cawcenter
2025-12-11 23:21:35 -05:00
commit abd964a745
68 changed files with 7960 additions and 0 deletions

22
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,22 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@/components/*": [
"src/components/*"
],
"@/lib/*": [
"src/lib/*"
],
"@/types/*": [
"src/types/*"
]
},
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}