tsconfig.json 280 B

1234567891011121314
  1. {
  2. "target": "es6",
  3. "compilerOptions": {
  4. "declaration": true,
  5. "noImplicitAny": true,
  6. "removeComments": false,
  7. "module": "commonjs",
  8. "outDir": "dist",
  9. "sourceMap": true,
  10. "lib": [
  11. "es2015"
  12. ]
  13. }
  14. }