tsconfig.json 674 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "es2021",
  4. "module": "nodenext",
  5. "declaration": true,
  6. "rootDir": "lib",
  7. "outDir": "dist",
  8. "strict": true,
  9. "strictNullChecks": true,
  10. "strictFunctionTypes": true,
  11. "strictBindCallApply": true,
  12. "strictPropertyInitialization": true,
  13. "noImplicitThis": true,
  14. "useUnknownInCatchVariables": true,
  15. "alwaysStrict": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "exactOptionalPropertyTypes": true,
  19. "noImplicitReturns": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "noUncheckedIndexedAccess": true,
  22. "noImplicitOverride": true,
  23. "noPropertyAccessFromIndexSignature": true
  24. },
  25. "include": [
  26. "lib"
  27. ]
  28. }