tsconfig.json 330 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "declaration": true,
  6. "noImplicitAny": false,
  7. "removeComments": true,
  8. "noLib": false,
  9. "outDir": "out/",
  10. "sourceMap": true,
  11. "out": "bin.js"
  12. },
  13. "filesGlob": [
  14. "./**/*.ts"
  15. ]
  16. }