2020-05-26 03:30:55 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"module": "esnext",
|
2021-03-29 19:31:52 +01:00
|
|
|
"target": "es2017",
|
2021-01-20 06:42:45 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2021-04-16 00:25:43 +01:00
|
|
|
"lib": ["es5", "es6", "dom"],
|
2020-05-26 03:30:55 +01:00
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2020-07-08 16:12:49 +01:00
|
|
|
"noEmit": true,
|
|
|
|
"types": ["jest"]
|
2020-05-26 03:30:55 +01:00
|
|
|
},
|
2021-05-04 17:12:54 +01:00
|
|
|
"include": ["./src/**/*", "./utils/**/*"],
|
2020-05-26 03:30:55 +01:00
|
|
|
"exclude": ["./src/**/__mocks__/**/*"]
|
|
|
|
}
|