imrishabh18/corne-keyboard
The code defines and renders two surface-mount chip components with SMT pads, silkscreen outlines, and 3D CAD models (OBJ and STEP) for PCB assembly.
- Version
- 2.0.21
- License
- unset
- Stars
- 1
tsconfig.json
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"types": [
"tscircuit",
"bun"
],
"allowJs": true
},
"include": [
"*.circuit.tsx",
"lib/**/*.ts",
"lib/**/*.tsx",
"imports/**/*.ts",
"imports/**/*.tsx",
"scripts/*.test.ts",
"scripts/*.test.tsx",
"scripts/check-circuit.ts",
"scripts/render-panel.ts",
"scripts/render-validated.ts"
],
"exclude": [
"node_modules",
"dist",
".claude"
]
}