tsconfig.base.json 269 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "strict": true,
  7. "skipLibCheck": true,
  8. "baseUrl": ".",
  9. "paths": {
  10. "@sentai/shared/*": [
  11. "packages/shared/src/*"
  12. ]
  13. }
  14. }
  15. }