{
  "compilerOptions": {
    "outDir": "./dist/", // path to output directory
    "sourceMap": true, // allow sourcemap support
    "strictNullChecks": true, // enable strict null checks as a best practice
    "module": "esnext", // specify module code generation
    "target": "esnext", // specify ECMAScript target version
    "moduleResolution": "node",
    "rootDir": "./",
    "allowJs": true,
    "strict": true,
    "jsx": "react"
  },
  "include": ["./src/"]
}
