tsconfig.json 869 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "compilerOptions": {
  3. "target": "es2019",
  4. "lib": ["es2020"],
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "esModuleInterop": true,
  8. "rootDir": "./",
  9. "baseUrl": "./",
  10. "paths": {
  11. "~/*": ["*"]
  12. },
  13. "declaration": true,
  14. "declarationMap": true,
  15. "outDir": "dist",
  16. "pretty": true,
  17. "sourceMap": true,
  18. "resolveJsonModule": true,
  19. "forceConsistentCasingInFileNames": true,
  20. "strict": true,
  21. "noImplicitAny": true,
  22. "strictNullChecks": true,
  23. "strictFunctionTypes": true,
  24. "strictBindCallApply": true,
  25. "strictPropertyInitialization": true,
  26. "noImplicitThis": true,
  27. "alwaysStrict": true,
  28. "exactOptionalPropertyTypes": true,
  29. "noUncheckedIndexedAccess": true,
  30. "noImplicitOverride": true,
  31. "noPropertyAccessFromIndexSignature": true,
  32. "skipLibCheck": true
  33. }
  34. }