Files
Jason Larabie b6b072e3a1 Add new hangman TS template (#5119)
# Description of Changes

Add a small Hangman demo as one of our templates. One single game for
all players at once to keep the design small.
- TypeScript module 
- Simple React front-end

# API and ABI breaking changes

N/A

# Expected complexity level and risk

1 - Added a small template

# Testing

- [x] Ran through `spacetime init` against local
2026-06-02 01:16:24 +00:00

21 lines
550 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}