view service/wifi/tsconfig.json @ 1474:f91ba30b4f75

build adjustments. now seems to read streamedgraph correctly. Ignore-this: 2768ea249aefb81d4720607e815d77c1 darcs-hash:7414b3c41ebf8a76d651de848a5db99e919bb644
author drewp <drewp@bigasterisk.com>
date Tue, 31 Dec 2019 02:45:25 -0800
parents 4bbc68603168
children 9ae34280218b
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": [ "es6", "dom" ],

    "diagnostics": true,
    "traceResolution": true

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