Files
inker/frontend/tsconfig.node.json
T
wojo b60bdcefc2 v0.2.0 — BYOD support, canvas zoom, CORS hardening, local network data sources
- BYOD: Register any e-ink device manually with custom resolution
- Canvas zoom: Auto-fit, +/-/fit controls, Ctrl+scroll
- Alternative device types: /api/setup HTTP_MODEL header → dimensions lookup
- Local network data sources: Settings toggle with SSRF safety guardrails
- CORS: Same-origin default, opt-in via CORS_ORIGINS env
- Models tab removed (devices have width/height, designer has presets)
- Dashboard Connect Device buttons redirect to /devices/new
- Version bumped to 0.2.0 across all packages and Swagger
2026-03-08 15:37:21 +00:00

27 lines
653 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}