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.3KB

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