iobroker-community-adapters / ioBroker.js2fs-community

replicate ioBroker scripts to files
MIT License
0 stars 3 forks source link

VC configuration with type script #16

Closed truegreyhound closed 4 years ago

truegreyhound commented 4 years ago

Unfortunately, the * .d.ts files are not downloaded and synchronized by the adapter. This causes the corresponding tests in VC to fail (method unknow, etc.). What is the correct handling with VC, type script and the adapter?

truegreyhound commented 4 years ago

okay, falls es einen interessiert, ich habe für mich eine Lösung gefunden. Aus .\node_modules\iobroker.javascript\lib habe ich die javascript.d.ts als javascript.d.ts.xxx in das Skript-Synchronisationsverzeichnis kopiert und binde diese zusätzlich in meine Skripte ein

/// <reference path="../javascript.d.ts" /> /// <reference path="../javascript.d.ts.xxx" /> Dateien mit unbekannter Dateiendung scheinen nicht synchronisiert zu werden und "xxx" gehört dazu. Eine von diesen beiden wird auf jeden Fall gefunden. Die javascript.d.ts.xxx könnte auch als Link/Junction bereitgestellt werden, aber das sei je nach System und Vorlieben jedem selbst überlassen.