{
  "compilerOptions": {
    "target": "ES6",
    "module": "commonjs",
    /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
    "sourceMap": true,
    /* Generates corresponding '.map' file. */
    "strict": true,
    /* Enable all strict type-checking options. */
    "noImplicitAny": true,
    /* Raise error on expressions and declarations with an implied 'any' type. */
    "strictNullChecks": true,
    /* Enable strict null checks. */
    "strictFunctionTypes": true,
    /* Enable strict checking of function types. */
    "strictBindCallApply": true,
    /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
    "strictPropertyInitialization": true,
    /* Enable strict checking of property initialization in classes. */
    "esModuleInterop": true,
    /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
    "outDir": "./lib/",
    /* Redirect output structure to the directory. */
    "rootDir": "./src/"
    /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
  },
  "exclude": [
    "lib"
  ],
  "include": [
    "./src"
  ]
}
