{
  "compilerOptions": {
    "allowSyntheticDefaultImports": false,
    "moduleResolution": "node",
    "module": "commonjs",
    "lib": [
      "es2015",
      "dom"
    ],
    "outDir": "./lib/",
    "sourceMap": true,
    "target": "es5",
    "jsx": "react",
    "noImplicitReturns": false,
    "noImplicitAny": false,
    "removeComments": true,
    "experimentalDecorators": true,
    "preserveConstEnums": true,
    "noErrorTruncation": true,
    "keyofStringsOnly": true,
    "declaration": true,
    "declarationDir": "./typings/",
    "typeRoots": [
      "index.d.ts",
      "node_modules/@types"
    ],
    "baseUrl": ".",
    "paths": {
      "react": [
        "node_modules/@types/react"
      ],
      "react-dom": [
        "node_modules/@types/react-dom"
      ],
      "react-router": [
        "node_modules/@types/react-router"
      ],
      "react-router-dom": [
        "node_modules/@types/react-router-dom"
      ],
      "history": [
        "node_modules/@types/history"
      ]
    }
  },
  "include": [
    "./src/**/*.tsx",
    "./src/**/*.ts"
  ],
  "exclude": [
    "node_modules"
  ]
}
