{
  "compilerOptions": {
    /* Visit https://aka.ms/tsconfig.json to read more about this file */
    /* Projects */

    /* Language and Environment */
    "target": "es6",                                  /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
    "lib": ["es5","es6","dom"],                                        /* Specify a set of bundled library declaration files that describe the target runtime environment. */
    "removeComments": true,
    "experimentalDecorators": true,

    /* Modules */
    "declaration": true,
//    "emitDeclarationOnly": true,
//    "isolatedModules": true,
    "module": "CommonJS",                                /* Specify what module code is generated. */
//    "moduleResolution": "node",
    "types": ["reflect-metadata"],
    "skipLibCheck": true,
//     "rootDir": [],                                  /* Specify the root folder within your source files. */
    // "typeRoots": [],                                  /* Specify multiple folders that act like `./node_modules/@types`. */

    /* JavaScript Support */
    "sourceMap": true,
    "allowJs": true,                                  /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
    "checkJs": false,                                  /* Enable error reporting in type-checked JavaScript files. */

    /* Emit */
    "esModuleInterop": true,                             /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,            /* Ensure that casing is correct in imports. */
    "declarationMap": true,

    /* Type Checking */
    "strict": true,                                      /* Enable all strict type-checking options. */
    "noImplicitAny": true
  },
  "include": [
    "./src/main/js/**/*"
  ],
  "exclude": ["dist","build.ts","build.ts","webpack.config.js","logs",".idea"]
}
