tsconfig.json 692 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "lib": ["ES2022"],
  6. "moduleResolution": "node",
  7. "rootDir": ".",
  8. "outDir": "build",
  9. "allowSyntheticDefaultImports": true,
  10. "esModuleInterop": true,
  11. "importHelpers": true,
  12. "alwaysStrict": false,
  13. "sourceMap": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "noImplicitReturns": true,
  17. "noUnusedLocals": false,
  18. "noUnusedParameters": true,
  19. "noImplicitAny": false,
  20. "noImplicitThis": false,
  21. "strictNullChecks": false,
  22. "resolveJsonModule": true,
  23. "skipLibCheck": true
  24. },
  25. "include": ["src/**/*", "__tests__/**/*"]
  26. }