24 lines
529 B
JSON
24 lines
529 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"./src",
|
|
"./tests"
|
|
],
|
|
"typedocOptions": {
|
|
"name": "@mtcute/core",
|
|
"includeVersion": true,
|
|
"out": "../../docs/packages/core",
|
|
"validation": {
|
|
"notExported": true,
|
|
"invalidLink": true,
|
|
"notDocumented": false
|
|
},
|
|
"excludePrivate": true,
|
|
"entryPoints": [
|
|
"./src/index.ts"
|
|
]
|
|
}
|
|
}
|