2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
2023-10-16 19:23:53 +03:00
|
|
|
"outDir": "./dist/esm",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"paths": {
|
|
|
|
"@mtcute/dispatcher": ["../dispatcher/src/state/storage.ts"],
|
|
|
|
}
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
|
|
|
"include": [
|
2023-06-12 23:28:30 +03:00
|
|
|
"./src",
|
2023-10-16 19:23:53 +03:00
|
|
|
],
|
|
|
|
"references": [
|
|
|
|
{ "path": "../tl" },
|
|
|
|
{ "path": "../tl-runtime" },
|
2021-04-08 12:19:38 +03:00
|
|
|
],
|
|
|
|
"typedocOptions": {
|
2021-08-05 20:38:24 +03:00
|
|
|
"name": "@mtcute/core",
|
2021-04-08 12:19:38 +03:00
|
|
|
"includeVersion": true,
|
|
|
|
"out": "../../docs/packages/core",
|
2022-08-24 23:37:26 +03:00
|
|
|
"validation": {
|
|
|
|
"notExported": true,
|
|
|
|
"invalidLink": true,
|
|
|
|
"notDocumented": false
|
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"excludePrivate": true,
|
|
|
|
"entryPoints": [
|
|
|
|
"./src/index.ts"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|