view service/wifi/tsconfig.json @ 672:f424809cba8d

npm run build works now, accessing streamed-graph. But, s-g isn't in the output bundle yet. Ignore-this: 2b08220ad8d275f4dd242c3aa1a8647a
author drewp@bigasterisk.com
date Sun, 29 Dec 2019 19:41:48 -0800
parents 540dd68af9f2
children f2215949c0c9
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" ],
    "paths": {
      "streamed-graph": ["node_modules/streamed-graph"]
    },
    "diagnostics": true,
    "traceResolution": true

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