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 1.2KB

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