1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-23 13:13:49 +03:00
tabby/tabby-serial/tsconfig.typings.json

16 lines
348 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.json",
"exclude": ["node_modules", "dist", "typings"],
"include": ["src"],
"compilerOptions": {
"baseUrl": "src",
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./typings",
"paths": {
2021-06-30 00:57:04 +03:00
"tabby-*": ["../../tabby-*"],
"*": ["../../app/node_modules/*"]
}
}
}