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    ],
13    "sourceMap": true,
14    "declaration": true,
15    "inlineSources": true,
16    "strictNullChecks": true,
17    "strictPropertyInitialization": true,
18    "strictFunctionTypes": true,
19    "skipLibCheck": true,
20    "noImplicitThis": true,
21    "noImplicitReturns": true
22  }
23}
24