| 12345678910111213141516 |
- {
- "extends": "../tsconfig.json",
- "exclude": ["node_modules", "dist", "typings"],
- "compilerOptions": {
- "baseUrl": "src",
- "emitDeclarationOnly": true,
- "declaration": true,
- "declarationDir": "./typings",
- "paths": {
- "tabby-*": ["../../tabby-*"],
- "*": [
- "../../app/node_modules/*"
- ]
- }
- }
- }
|