tsconfig.json 766 B

123456789101112131415161718192021222324252627282930
  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": false,
  19. "noImplicitAny": false,
  20. "noImplicitThis": false,
  21. "strictNullChecks": false,
  22. "resolveJsonModule": true,
  23. "skipLibCheck": true
  24. },
  25. "tsc-alias": {
  26. "resolveFullPaths": true,
  27. "verbose": false
  28. },
  29. "include": ["src/**/*", "__tests__/**/*"]
  30. }