tabby/tabby-local/tsconfig.typings.json

17 lines
342 B
JSON
Raw Permalink Normal View History

{
"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-*"],
"*": [
"../../app/node_modules/*"
]
}
}
}