TypeScript checking is clean.

Tons and tons of broken functionality. Now the crawl begins.
This commit is contained in:
Eli Ribble 2026-03-22 02:55:17 +00:00
parent d9a98e9eb2
commit 03301518f0
No known key found for this signature in database
7 changed files with 176 additions and 73 deletions

View file

@ -13,6 +13,7 @@
"vue-router": "^5.0.4"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"esbuild": "^0.25.5",
"esbuild-plugin-vue3": "^0.5.1",
"esbuild-sass-plugin": "^3.7.0",
@ -22,10 +23,10 @@
"scripts": {
"build": "node build.js",
"build:prod": "node build.js --minify",
"dev": "pnpm typecheck:watch & pnpm watch",
"dev": "pnpm typecheck:watch & pnpm watch",
"generate-icons": "node generate-icons.js",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch --preserveWatchOutput",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch --preserveWatchOutput",
"watch": "node build.js --watch"
}
}