BooksBaum
BooksBaum
I think same issue as this and #1518 -- but not just in Script files, but normal F# code files in F# project too. While trying to figuring out what's...
I tested changing timezones: code ```javascript "use strict"; const os = require("os"); console.log(`OS=${os.type()}; node=${process.version}`); function logNow() { const now = new Date(); const offsetInMinutes = now.getTimezoneOffset() * -1; const [h,min]...
It's JavaScript, so you can just mock `Date` by changing its prototype. [timekeeper](https://github.com/vesln/timekeeper) is pretty cool. But that focuses on setting time to a specific time, not in a timezone....
hmpf...didn't mean to close the issue...just clicked wrong.... ---------- Happened while toying to update ts2fable to fable 3. https://github.com/fable-compiler/ts2fable/blob/master/src/ts2fable.fs -> contains main method with EntryPoint ~= command line utility https://github.com/fable-compiler/ts2fable/tree/master/web-app:...
Actual important reason to reference a project with EntryPoint: Testing (happens in ts2fable repo too -- but wasn't at that step in converting to fable 3. And somehow didn't think...
I think they are slightly different: > with the latest fsac there appears to be an excessive CPU usage running for a very long time (10 mins +) ; the...
> On the main process. However, checking other files from the project WAS happening in the Background Service. hm, interesting Using older Ionide (`6.0.6`) the background service exist -- but...
It's way better -- but still way too high The good: It doesn't immediately jump (close) to 100% CPU any more and basically blocks VSCode and makes the OS and...
> If the fix brings it back to usable state/similar utilization to previous versions, it sounds good to me. It's still only similar and really usable when no other files...
VSCode seems to [support pull diagnostics](https://github.com/microsoft/vscode-languageserver-node/blob/d2def542712faf49c86c9fe3c8f4ce31729cd8f7/protocol/src/common/protocol.diagnostic.ts) But this doesn't solve our problem as we still have/want to analyze all related files. `textDocument/diagnostics` "just" tells server for what document diagnostics are...