view tsconfig.json @ 0:3989f073ed9e

start. hardcoded motion light in garage
author drewp@bigasterisk.com
date Thu, 24 Aug 2023 16:28:05 -0700
parents
children f92cec01b59e
line wrap: on
line source

{
  "compilerOptions": {
    "strict": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "strictFunctionTypes": true,
    "strictNullChecks": true,
    "strictPropertyInitialization": true,
    "alwaysStrict": true,

    "types": [],

    "module": "ES6",
    "target": "ES6",
    "moduleResolution": "node",
    "sourceMap": true,
    "declaration": true,
    "experimentalDecorators": true,
    "allowJs": true,
    "esModuleInterop": true,
    "traceResolution": true,
    "baseUrl": ".",
    "lib": ["es6", "dom", "ES2019.Object"]
  },
  "include": ["src/**/*.ts"]
}