tsconfig.typings.json 348 B

123456789101112131415
  1. {
  2. "extends": "../tsconfig.json",
  3. "exclude": ["node_modules", "dist", "typings"],
  4. "include": ["src"],
  5. "compilerOptions": {
  6. "baseUrl": "src",
  7. "emitDeclarationOnly": true,
  8. "declaration": true,
  9. "declarationDir": "./typings",
  10. "paths": {
  11. "tabby-*": ["../../tabby-*"],
  12. "*": ["../../app/node_modules/*"]
  13. }
  14. }
  15. }