tsconfig.json 246 B

123456789101112
  1. {
  2. "extends": "../tsconfig.json",
  3. "exclude": ["node_modules", "dist"],
  4. "compilerOptions": {
  5. "baseUrl": "src",
  6. "declarationDir": "dist",
  7. "paths": {
  8. "terminus-*": ["terminus-*"],
  9. "*": ["app/node_modules/*"]
  10. }
  11. }
  12. }