squash and nuke dev

This commit is contained in:
outfoxxed 2026-02-18 02:40:40 -08:00
parent b2d43ad425
commit f26e76c114
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
93 changed files with 33827 additions and 7831 deletions

View file

@ -1,6 +1,8 @@
{
"extends": "astro/tsconfigs/strict",
"include": ["src/**/*", "**/**.d.ts", "pagefind.ts"],
"compilerOptions": {
"lib": ["es2023"],
"plugins": [
{
"name": "@astrojs/ts-plugin"
@ -9,32 +11,25 @@
"jsx": "preserve",
"jsxImportSource": "solid-js",
"verbatimModuleSyntax": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@*": [
"./*"
],
"@/*": [
"./src/*"
],
"@config/*": [
"./src/config/*"
],
"@icons": [
"./src/components/icons.tsx"
],
"@icons/*": [
"./src/icons/*"
],
"@components/*": [
"./src/components/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@styles/*": [
"./src/styles/*"
]
}
"@*": ["./*"],
"@/*": ["./src/*"],
"@config/*": ["./src/config/*"],
"@icons": ["./src/components/icons.tsx"],
"@icons/*": ["./src/icons/*"],
"@components/*": ["./src/components/*"],
"@layouts/*": ["./src/layouts/*"],
"@styles/*": ["./src/styles/*"],
"@_types": ["./src/config/_types/index.ts"],
"@_types/*": ["./src/config/_types/*"]
},
"types": ["astro/client"]
}
}