arnavk-09/climate-sensor-node
A power management and connectivity module featuring a USB-C port, a low-noise voltage regulator, a Wi-Fi/Bluetooth microcontroller (ESP32-C3-MINI), temperature/humidity sensor (SHT40), status LED, reset and mode pushbuttons, and associated passive components integrated onto a multilayer PCB with test points, vias, and custom silkscreen artwork.
- Version
- 1.1.0
- License
- unset
- Stars
- 1
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"
]
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules",
"dist",
".claude"
]
}