krishnax12/watchy-eink-smartwatch
This code defines TypeScript modules to import 3D CAD model files (.step and .stp formats) as URLs representing the physical hardware components.
- Version
- 1.2.2
- License
- MIT
- Stars
- 2
tsconfig.json
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"types": ["tscircuit", "bun"]
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
".claude"
]
}