view tsconfig.json @ 16:838eb0223bdb

cp mongo_required
author drewp@bigasterisk.com
date Sun, 16 Apr 2023 03:17:48 -0700
parents b73941c4dc0a
children 1fa90a903621
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": [],

    "module": "ES6",
    "target": "ES6",
    "moduleResolution": "node",
    "sourceMap": true,
    "declaration": true,
    "experimentalDecorators": true,
    "allowJs": true,
    "esModuleInterop": true,
    "traceResolution": true,
    // "allowSyntheticDefaultImports": true,
    // "rootDir": ".",
    // "outDir": "./build",
    "baseUrl": ".",
    // "emitDecoratorMetadata": true,
    "lib": [ "es6", "dom", "ES2019.Object" ],
  },
  "include": ["./src"]
  // "exclude": ["src/**/*.test.ts"]
}