export async function copyLanguageServerFiles()

in package/scripts/lib.js [42:46]


export async function copyLanguageServerFiles(target) {
    for (const [from, to] of languageServiceFiles) {
        await fs.cp(require.resolve(from), path.join(packageFolder, target, to + '.js'));
    }
}