tsconfig.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. "baseUrl": ".",
  25. "paths": {
  26. "@/*": ["src/*"],
  27. "@/adapters/*": ["src/adapters/*"],
  28. "@/types/*": ["src/types/*"],
  29. "@/utils/*": ["src/utils/*"],
  30. "@/config/*": ["src/config/*"],
  31. "@/examples/*": ["src/examples/*"]
  32. }
  33. },
  34. "tsc-alias": {
  35. "resolveFullPaths": true,
  36. "verbose": false
  37. },
  38. "include": ["src/**/*", "__tests__/**/*", "examples/**/*", "scripts/**/*"]
  39. }