Temporary workaround for missing .d.ts file

This commit is contained in:
Pete Gonzalez 2020-12-02 22:53:57 -08:00
Родитель 488ddad4ab
Коммит ddb885d4b1
1 изменённых файлов: 23 добавлений и 0 удалений

23
tsdoc/config/heft.json Normal file
Просмотреть файл

@ -0,0 +1,23 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/heft.schema.json",
"extends": "@rushstack/heft-web-rig/profiles/library/config/heft.json",
"eventActions": [
{
"actionKind": "copyFiles",
"heftEvent": "bundle",
"actionId": "add-dts-file",
"copyOperations": [
{
"sourceFolder": "lib/beta",
"destinationFolders": ["lib-commonjs/beta"],
"fileExtensions": [".d.ts"]
}
]
}
]
}