tsconfig.json 540 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "module": "CommonJS",
  4. "moduleResolution": "Node",
  5. "target": "ES2022",
  6. "strict": true,
  7. "esModuleInterop": true,
  8. "skipLibCheck": true,
  9. "forceConsistentCasingInFileNames": true,
  10. "outDir": "./dist",
  11. "rootDir": "./src",
  12. "declaration": true,
  13. "resolveJsonModule": true,
  14. "emitDecoratorMetadata": true,
  15. "experimentalDecorators": true,
  16. "types": [
  17. "node"
  18. ]
  19. },
  20. "include": [
  21. "src/**/*"
  22. ],
  23. "exclude": [
  24. "node_modules",
  25. "dist",
  26. "test"
  27. ]
  28. }