view tsconfig.json @ 47:7d17a02b5ae0

reformats and minor edits
author drewp@bigasterisk.com
date Mon, 06 Jan 2020 23:52:30 -0800
parents 29d8ed02a275
children b8e5850acca0
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,
    "traceResolution": true,
    // "allowSyntheticDefaultImports": true,
    // "rootDir": ".",
    // "outDir": "./build",
    // "baseUrl": "./build"
    // "emitDecoratorMetadata": true,
    // "lib": [ "es6", "dom" ],
  },
  "include": ["src/**/*.ts"]
  // "exclude": ["src/**/*.test.ts"]
}