tsconfig.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "version": "1.4.1",
  3. "compilerOptions": {
  4. "declaration": true,
  5. "noImplicitAny": true,
  6. "removeComments": false,
  7. "module": "commonjs",
  8. "outDir": "dist",
  9. "sourceMap": true,
  10. "target": "es5"
  11. },
  12. "filesGlob": [
  13. "src/**/*.ts",
  14. "typings/**/*.ts"
  15. ],
  16. "files": [
  17. "src/batch.ts",
  18. "src/cli.ts",
  19. "src/episode.ts",
  20. "src/index.ts",
  21. "src/request.ts",
  22. "src/series.ts",
  23. "src/subtitle/decode.ts",
  24. "src/subtitle/formats/ass.ts",
  25. "src/subtitle/formats/index.ts",
  26. "src/subtitle/formats/srt.ts",
  27. "src/subtitle/index.ts",
  28. "src/typings.ts",
  29. "src/video/index.ts",
  30. "src/video/merge.ts",
  31. "src/video/stream.ts",
  32. "typings/big-integer/big-integer.d.ts",
  33. "typings/cheerio/cheerio.d.ts",
  34. "typings/commander/commander.d.ts",
  35. "typings/form-data/form-data.d.ts",
  36. "typings/mkdirp/mkdirp.d.ts",
  37. "typings/node/node.d.ts",
  38. "typings/request/request.d.ts",
  39. "typings/xml2js/xml2js.d.ts"
  40. ]
  41. }