view service/wifi/tsconfig.json @ 1710:f4009f41f15d

patchablegraph to its own repo
author drewp@bigasterisk.com
date Wed, 24 Nov 2021 10:16:03 -0800
parents b267511ec4fc
children
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","ES6","DOM.Iterable","ScriptHost", "ES2017.object" ],

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