tsconfig-lib.json 510 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. // Emit options
  5. "rootDir": "src",
  6. "outDir": "lib",
  7. "declaration": true,
  8. "declarationMap": true,
  9. "target": "es5",
  10. "module": "commonjs",
  11. "stripInternal": true,
  12. "sourceMap": true,
  13. "newLine": "LF",
  14. // Checking options
  15. "strict": true,
  16. "charset": "utf8",
  17. "lib": [
  18. "es5",
  19. "es2015.collection"
  20. ],
  21. // Module resolution and types
  22. "moduleResolution": "node"
  23. },
  24. "include": [
  25. "src"
  26. ]
  27. }