tsconfig.json 305 B

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