tsconfig.json 507 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "lib": ["ES2022", "DOM"],
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "resolveJsonModule": true,
  13. "declaration": true,
  14. "composite": true,
  15. "sourceMap": true,
  16. "outDir": "dist",
  17. "rootDir": "src"
  18. },
  19. "include": ["src"],
  20. "references": [
  21. { "path": "../shared" }
  22. ]
  23. }