{
  "compilerOptions": {
    "module": "esnext",
    "target": "es5",
    "lib": [
      "es6",
      "dom"
    ],
    "baseUrl": "./",
    "paths": {
      "Foundation": ["Foundation"],
      "Project": ["Project"],
      "Feature": ["Feature"],
    },
    "sourceMap": true,
    "allowJs": true,
    "jsx": "react",
    "moduleResolution": "node",
    "rootDir": "components",
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": false,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noImplicitAny": true,
    "strictNullChecks": false,
    "suppressImplicitAnyIndexErrors": true,
    "noUnusedLocals": true,
    "downlevelIteration": true
  },
  "include": [
    "Foundation/*/client/**/*",
    "Feature/*/client/**/*",
    "Project/*/client/**/*"
  ],
  "exclude": [
    "Foundation/**/*.js",
    "Feature/**/*.js",
    "Project/**/*.js"
  ]
}