Initial commit: sam-iot-electronics

This commit is contained in:
2026-08-26 13:19:24 +10:00
commit fb0a8f19ad
27 changed files with 3229 additions and 0 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": { "@/*": ["./*"] },
"allowImportingTsExtensions": true,
"noEmit": true
}
}