tsconfig.json 511 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "Node16",
  5. "moduleResolution": "Node16",
  6. "lib": ["ES2022"],
  7. "types": ["node"],
  8. "outDir": "./dist",
  9. "rootDir": "./src",
  10. "strict": true,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "declaration": true,
  15. "declarationMap": true,
  16. "sourceMap": true,
  17. "allowSyntheticDefaultImports": true
  18. },
  19. "include": ["src/**/*"],
  20. "exclude": ["node_modules", "dist"]
  21. }