tsconfig.json 548 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "outDir": "lib",
  4. "baseUrl": "src",
  5. "declaration": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "declarationMap": true,
  9. "removeComments": true,
  10. "preserveConstEnums": true,
  11. "module": "commonjs",
  12. "noEmit": false,
  13. "resolveJsonModule": true,
  14. "esModuleInterop": true,
  15. "skipLibCheck": true,
  16. "sourceMap": true,
  17. "strictNullChecks": true,
  18. "target": "es5"
  19. },
  20. "include": [
  21. "src/**/*"
  22. ],
  23. "exclude": [
  24. "node_modules",
  25. "lib"
  26. ]
  27. }