1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-28 05:36:31 +03:00
tabby/terminus-terminal/tsconfig.typings.json

18 lines
387 B
JSON
Raw Normal View History

2019-06-06 14:45:15 +03:00
{
"extends": "../tsconfig.json",
"exclude": ["node_modules", "dist", "typings"],
"compilerOptions": {
"baseUrl": "src",
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "./typings",
"paths": {
"terminus-*": ["../../terminus-*"],
2019-06-06 21:53:14 +03:00
"*": [
"../../app/node_modules/*",
"../node_modules/xterm/src/*"
]
2019-06-06 14:45:15 +03:00
}
}
}