Make sure we delete new TS internal file names too (#230011)

https://github.com/microsoft/TypeScript/pull/59720
This commit is contained in:
Matt Bierner 2024-09-27 12:50:52 -07:00 коммит произвёл GitHub
Родитель f74d65ef2c
Коммит 626fc7d398
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -26,7 +26,10 @@ function processRoot() {
function processLib() {
const toDelete = new Set([
'tsc.js',
'_tsc.js',
'typescriptServices.js',
'_typescriptServices.js',
]);
const libRoot = path.join(root, 'lib');