view tsconfig.json @ 86:6ec759f9009f

build fixes, dead code, format
author drewp@bigasterisk.com
date Thu, 25 Nov 2021 18:15:08 -0800
parents 7c93e17b1111
children 76c1a29a328f
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,
    "declarationDir": ".", // relative to outDir
    "experimentalDecorators": true,
    "allowJs": true,
    "esModuleInterop": true,
    // "traceResolution": true,
    // "allowSyntheticDefaultImports": true,
    // "rootDir": ".",
    "outDir": "./build",
    "baseUrl": "."
    // "emitDecoratorMetadata": true,
    // "lib": [ "es6", "dom" ],
  },
  "include": ["src/**/*.ts"],
  "exclude": ["src/**/*.test.ts"]
}