tsconfig.json 585 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "outDir": "./dist/out-tsc",
  6. "sourceMap": true,
  7. "declaration": false,
  8. "module": "es2015",
  9. "moduleResolution": "node",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "importHelpers": true,
  13. "target": "es5",
  14. "typeRoots": [
  15. "node_modules/@types"
  16. ],
  17. "lib": [
  18. "es2018",
  19. "dom"
  20. ],
  21. "paths": {
  22. "ge-admin-auth": [
  23. "dist/ge-admin-auth"
  24. ],
  25. "ge-admin-auth/*": [
  26. "dist/ge-admin-auth/*"
  27. ]
  28. }
  29. }
  30. }