tsconfig.json 353 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "CommonJS",
  5. "moduleResolution": "node",
  6. "outDir": "dist",
  7. "rootDir": "src",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "resolveJsonModule": true,
  12. "declaration": true
  13. },
  14. "include": ["src/**/*"],
  15. "exclude": ["node_modules", "dist"]
  16. }