tsconfig.json 305 B

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