astro check restored: tsconfig excludes public/ (the 2 MB vendored CMS bundle was what exhausted the heap) and extends tsconfigs/strict; type annotations in template scripts, z from astro/zod; exact version pins; compressHTML true (lossless whitespace, no words glued to links) and explicit trailingSlash/build.format; README: upgrading section

This commit is contained in:
2026-09-06 15:12:56 +02:00
parent e8b47ac888
commit bd95bacfc5
10 changed files with 53 additions and 25 deletions
+4 -4
View File
@@ -7,13 +7,13 @@
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro build && node scripts/check-links.mjs"
"check": "astro check && astro build && node scripts/check-links.mjs"
},
"dependencies": {
"astro": "^7.2.10"
"astro": "7.2.10"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"typescript": "^6.0.3"
"@astrojs/check": "0.9.10",
"typescript": "6.0.3"
}
}