tsconfig.typings.json 342 B

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