Convert project to TypeScript; add workflow to build with Vite then publish to GH Pages.

This commit is contained in:
天クマ 2026-07-20 11:18:19 -03:00
commit e615234325
30 changed files with 1932 additions and 443 deletions

20
tsconfig.json Normal file
View file

@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"isolatedModules": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"outDir": "./dist",
"rootDir": "./web/src",
"sourceMap": true
},
"include": ["web/src"]
}