tsconfig.json 276 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "sourceMap": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "removeComments": true,
  9. "noImplicitAny": true
  10. },
  11. "exclude": [
  12. "node_modules",
  13. "test"
  14. ]
  15. }