tsconfig.json 336 B

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