Plain TS + Vite, JetBrains Mono terminal aesthetic. Includes engine (pure logic, direction normalization, tile tracking), animated UI (CSS transitions + keyframes), keyboard/touch input, Dockerfile, nginx config, docker-compose, and Gitea Actions CI workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
479 B
JSON
20 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"module": "esnext",
|
|
"lib": ["ES2023", "DOM"],
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"]
|
|
}
|