34 lines
1,013 B
JSON
34 lines
1,013 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"composite": true,
|
|
"sourceMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"importHelpers": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"resolveJsonModule": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"stripInternal": true,
|
|
"target": "es6",
|
|
"typeRoots": ["node_modules/@types", "node_modules/jest"],
|
|
"types": ["node", "jest", "@testing-library/jest-dom", "@testing-library/react"]
|
|
}
|
|
}
|