tsconfig.json 326 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "types": ["node"],
  11. "outDir": "dist",
  12. "rootDir": "src",
  13. "declaration": true
  14. },
  15. "include": ["src"]
  16. }