tsconfig_base.json 498 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "module": "ESNext",
  4. "target": "ES2021",
  5. "noEmitOnError": true,
  6. "pretty": true,
  7. "allowUnreachableCode": false,
  8. "forceConsistentCasingInFileNames": true,
  9. "noFallthroughCasesInSwitch": true,
  10. "noImplicitOverride": true,
  11. "noImplicitReturns": true,
  12. "noPropertyAccessFromIndexSignature": true,
  13. "noUncheckedIndexedAccess": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "strict": true,
  17. "typeRoots": []
  18. }
  19. }