/* Copyright(C) 2017-2026, HJD (https://github.com/hjdhjd). All rights reserved.
 *
 * tsconfig.json: Default TypeScript transpiler options for ESM Homebridge plugins.
 */
{
  "compilerOptions": {

    "allowSyntheticDefaultImports": true,
    "declaration": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,

    "lib": [

      "DOM",
      "ES2024",
      "ESNext.Array",
      "ESNext.Collection",
      "ESNext.Iterator"
    ],

    "module": "nodenext",
    "sourceMap": true,
    "strict": true,
    "target": "ES2024"
  }
}
/* When creating your own tsconfig.json, use the following as a starting point to inherit these defaults:
 *
 * {
 *   "compilerOptions": {
 *
 *     "outDir": "dist",
 *     "rootDir": "src"
 *   },
 *
 *   "extends": "./build/tsconfig.json",
 *
 *   "include": [
 *
 *     "build",
 *     "eslint.config.mjs",
 *     "src",
 *     "ui"
 *   ]
 * }
 */
