1
0
Fork 0
mirror of https://github.com/imjasonh/dodec synced 2026-07-07 01:32:17 +00:00
dodec/tsconfig.json
Jason Hall 7e4fabfd23
Initial commit: Snub dodecahedron game with TypeScript
- Three.js-based 3D snub dodecahedron implementation
- TypeScript source with build pipeline
- Interactive face selection and rotation
- 60 mathematically correct vertices using golden ratio
- ConvexGeometry triangulation (not true 92-face structure yet)
- Clean code architecture with separated concerns
2025-06-09 18:04:48 -04:00

23 lines
No EOL
433 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "none",
"lib": ["ES2020", "DOM"],
"outDir": "./",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": false,
"sourceMap": false,
"removeComments": true
},
"include": [
"game.ts"
],
"exclude": [
"node_modules",
"**/*.js"
]
}