tsconfig.json 230 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "module": "commonjs",
  5. "declaration": true,
  6. "outDir": "lib",
  7. "strict": true,
  8. "removeComments": true,
  9. "esModuleInterop": true
  10. },
  11. "include": ["src/**/*"]
  12. }