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 926B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "declarationMap": true,
  5. "composite": true,
  6. "sourceMap": true,
  7. "emitDeclarationOnly": true,
  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,
  20. "noImplicitAny": true,
  21. "noImplicitReturns": true,
  22. "noUnusedLocals": false,
  23. "noUnusedParameters": false,
  24. "skipLibCheck": true,
  25. "strict": true,
  26. "strictFunctionTypes": true,
  27. "strictNullChecks": true,
  28. "stripInternal": true,
  29. "target": "es6",
  30. "typeRoots": ["node_modules/@types", "node_modules/jest"],
  31. "types": ["node", "jest"]
  32. }
  33. }