tsconfig.json 385 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "outDir": "lib",
  4. "target": "ES2015",
  5. "removeComments": true,
  6. "module": "ES2015",
  7. "declaration": true,
  8. "declarationDir": "types",
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. },
  13. "include": ["./src/**/*.ts"],
  14. "exclude": ["node_modules"]
  15. }