Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

tsconfig.base.json 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. // For references
  4. "declaration": true,
  5. "declarationMap": true,
  6. "sourceMap": true,
  7. // Other
  8. "allowSyntheticDefaultImports": true,
  9. "esModuleInterop": true,
  10. "experimentalDecorators": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "importHelpers": true,
  13. "importsNotUsedAsValues": "error",
  14. "incremental": true,
  15. "jsx": "preserve",
  16. "lib": ["dom", "esnext"],
  17. "module": "esnext",
  18. "moduleResolution": "node",
  19. "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
  20. "noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
  21. "noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
  22. "noUnusedLocals": false /* Report errors on unused locals. */,
  23. "noUnusedParameters": false /* Report errors on unused parameters. */,
  24. "skipLibCheck": true,
  25. "strict": false,
  26. "strictFunctionTypes": true /* Enable strict checking of function types. */,
  27. "strictNullChecks": true /* Enable strict null checks. */,
  28. "stripInternal": true,
  29. "target": "es6",
  30. "typeRoots": ["node_modules/@types", "node_modules/jest"],
  31. "types": ["node", "jest"]
  32. }
  33. }