Guest User

Untitled

a guest
Oct 20th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. I'm building an Angular library with ng-packagr.
  2.  
  3. {
  4. "$schema": "./node_modules/ng-packagr/ng-package.schema.json",
  5. "src": "lib",
  6. "dest": "dist/auth",
  7. "workingDirectory": ".ng_build",
  8. "lib": {
  9. "entryFile": "public_api.ts",
  10. "externals": {
  11. "oidc-client": "./node_modules/oidc-client/dist/oidc-client.min.js",
  12. "rxjs/add/operator/let": "Rx.Observable.prototype"
  13. }
  14. }
  15. }
  16.  
  17. {
  18. "compilerOptions": {
  19. "target": "es5",
  20. "module": "es2015",
  21. "lib": [
  22. "es6",
  23. "dom"
  24. ],
  25. "moduleResolution": "node",
  26. "declaration": true,
  27. "experimentalDecorators": true,
  28. "baseUrl": ".",
  29. "stripInternal": true,
  30. "outDir": "./dist",
  31. "sourceMap": true,
  32. "inlineSources": true,
  33. "skipLibCheck": true
  34. },
  35. "exclude": [
  36. "node_modules",
  37. "dist",
  38. "demo",
  39. "config",
  40. "coverage",
  41. "src/**/*.spec.ts"
  42. ],
  43. "angularCompilerOptions": {
  44. "strictMetadataEmit": true,
  45. "skipTemplateCodegen": true,
  46. "trace": true
  47. }
  48. }
Add Comment
Please, Sign In to add comment