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

tsconfig.base.json 1.2KB

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