tsconfig.json 790 B

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