view service/wifi/tsconfig.json @ 1542:5517f54eaba8

build update Ignore-this: 1b29ef44c5f6c3c3e8c70f509fbbde66 darcs-hash:e93956d750d152774cbdf63b049051564aaab5bf
author drewp <drewp@bigasterisk.com>
date Thu, 13 Feb 2020 10:16:28 -0800
parents e188fd8351c0
children b267511ec4fc
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": ["jest"],

    "module": "ES6",
    "target": "ES6",
    "moduleResolution": "node",
    "sourceMap": true,
    "declaration": true,
    "experimentalDecorators": true,
    "allowJs": true,
    "esModuleInterop": true,
    // "allowSyntheticDefaultImports": true,
    // "rootDir": ".",
    // "outDir": "./build",
    "baseUrl": "."
    // "emitDecoratorMetadata": true,
    // "lib": [ "dom" ],

    // "diagnostics": true,
    // "traceResolution": true
  },
  "include": ["src/**/*.ts"]
  // "exclude": ["src/**/*.test.ts"]
}