2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist"
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src"
|
|
|
|
],
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|