tsconfig.json 322 B

1234567891011121314
  1. {
  2. "compilerOptions":
  3. {
  4. "lib": ["ES5"],
  5. "module": "CommonJS",
  6. "moduleResolution": "node",
  7. "target": "ESNext",
  8. "declaration": true,
  9. "outDir": "dist",
  10. "strictNullChecks": true,
  11. },
  12. "include": ["./src"],
  13. "exclude": ["./node_modules", "**/*.spec.ts"]
  14. }