You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new project that has simple tsconfig and open a single .ts file with the contents:
importfsfrom'fs';
After opening this project in VS Code, I notice a large number of fs.stat calls into /Users/matb/Library/Caches/typescript/5.0/, where automatically acquired types are stored. However according to the TS Server log, none of these files end up in the project
Here's a log of all the file stat calls when opening this one file: tsSyncCalls.txt
The text was updated successfully, but these errors were encountered:
The location checks in /Users/matb/Library/Caches/typescript/5.0/ are coming from typing installer as it initialises and processes global cache. I think this can be deferred till we really get the request though. Will experiment.
Related to #52695
Bug Report
🔎 Search Terms
Problem
Create a new project that has simple tsconfig and open a single
.ts
file with the contents:After opening this project in VS Code, I notice a large number of fs.stat calls into
/Users/matb/Library/Caches/typescript/5.0/
, where automatically acquired types are stored. However according to the TS Server log, none of these files end up in the projectHere's a log of all the file stat calls when opening this one file: tsSyncCalls.txt
The text was updated successfully, but these errors were encountered: