tsconfig.json 340 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "lib": ["ES2022"],
  5. "module": "ES2022",
  6. "moduleResolution": "Bundler",
  7. "outDir": "dist",
  8. "rootDir": "src",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "resolveJsonModule": true,
  13. "types": ["node"]
  14. },
  15. "include": ["src/**/*.ts"]
  16. }