You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.base.json 1015B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "declaration": true,
  5. "declarationMap": false,
  6. "sourceMap": false,
  7. "emitDeclarationOnly": true,
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "experimentalDecorators": true,
  11. "forceConsistentCasingInFileNames": false,
  12. "importHelpers": true,
  13. "importsNotUsedAsValues": "error",
  14. "resolveJsonModule": true,
  15. "incremental": true,
  16. "jsx": "preserve",
  17. "lib": ["dom", "esnext"],
  18. "module": "esnext",
  19. "moduleResolution": "node",
  20. "noFallthroughCasesInSwitch": true,
  21. "noImplicitAny": true,
  22. "noImplicitReturns": true,
  23. "noUnusedLocals": false,
  24. "noUnusedParameters": false,
  25. "skipLibCheck": true,
  26. "strict": true,
  27. "strictFunctionTypes": true,
  28. "strictNullChecks": true,
  29. "stripInternal": true,
  30. "target": "es6",
  31. "typeRoots": ["node_modules/@types", "node_modules/jest"],
  32. "types": ["node", "jest", "@testing-library/jest-dom", "@testing-library/react"]
  33. }
  34. }