1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| {
| "compilerOptions": {
| "module": "esnext",
| "target": "esnext",
| "lib": ["es6", "dom"],
| "sourceMap": true,
| "strict": false /* Enable all strict type-checking options. */,
| "jsx": "react",
| "moduleResolution": "node",
| "rootDir": "./src",
| "noImplicitReturns": true,
| "noImplicitThis": true,
| "noImplicitAny": true,
| "strictNullChecks": true,
| "experimentalDecorators": true,
| "emitDecoratorMetadata": true,
| "allowSyntheticDefaultImports": true,
| "typeRoots": ["./node_modules/@types", "./typings"]
| },
| "include": ["**/*"],
| "exclude": ["node_modules"],
| "types": ["typePatches"]
| }
|
|