tabby/tabby-terminal/tsconfig.typings.json

18 lines
381 B
JSON
Raw Normal View History

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