tsconfig.json 477 B

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