1{
2  "compilerOptions": {
3    "target": "esnext",
4    "lib": ["dom", "esnext"],
5    "jsx": "react",
6    "moduleResolution": "node",
7    "esModuleInterop": true,
8    "types": ["jest", "jest-require"],
9    "typeRoots": [
10      "./ts-declarations",
11      "./node_modules/@types",
12      "../../node_modules/@types",
13    ],
14    "sourceMap": true,
15    "declaration": true,
16    "declarationMap": true,
17    "inlineSources": true,
18    "strictNullChecks": true,
19    "strictPropertyInitialization": true,
20    "strictFunctionTypes": true,
21    "skipLibCheck": true,
22    "noImplicitThis": true,
23    "noImplicitReturns": true
24  }
25}
26