fix(astro): remove astro checks
All checks were successful
build dist / build-dist (push) Successful in 29s

This commit is contained in:
z0x 2025-03-23 11:33:18 -04:00
parent 702361c3ca
commit f0562309f2
4 changed files with 67 additions and 252 deletions

View file

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