tsconfig.lib.json 432 B

1234567891011121314151617181920212223
  1. {
  2. "extends": "../tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "../../out-tsc/lib",
  5. "target": "es2015",
  6. "declaration": true,
  7. "inlineSources": true,
  8. "types": [],
  9. "lib": [
  10. "dom",
  11. "es2018"
  12. ]
  13. },
  14. "angularCompilerOptions": {
  15. "skipTemplateCodegen": true,
  16. "strictMetadataEmit": true,
  17. "enableResourceInlining": true
  18. },
  19. "exclude": [
  20. "src/test.ts",
  21. "**/*.spec.ts"
  22. ]
  23. }