mirror of
https://github.com/imjasonh/dodec
synced 2026-07-07 01:32:17 +00:00
- 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
23 lines
No EOL
433 B
JSON
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"
|
|
]
|
|
} |