{
  "extends": "../../tsconfig.json",
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "baseUrl": "src",
    "esModuleInterop": true,
    "lib": ["es6", "ES2019", "dom"],
    "module": "commonjs",
    "noImplicitAny": false,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "preserveSymlinks": true,

    "noUnusedLocals": true,
    "outDir": "lib",
    "strict": false,
    "suppressImplicitAnyIndexErrors": true,
    // Turning this off throws this error for an unknown reason:
    // https://github.com/Microsoft/TypeScript/issues/26627
    "strictNullChecks": true,
    "target": "es2015",
    "jsx": "react",
    "types": ["react", "jest", "node", "segment-analytics"]
  },
  "include": ["./src"],
 
}
