tsconfig.json 331 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": false,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "target": "es6",
  9. "sourceMap": false,
  10. "esModuleInterop": true,
  11. "outDir": "./dist",
  12. "baseUrl": "./"
  13. },
  14. "exclude": ["node_modules"]
  15. }