tsconfig.typings.json 326 B

1234567891011121314
  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. "*": ["../../app/node_modules/*"]
  12. }
  13. }
  14. }