I\'m in the process of making the move from Webstorm to Visual Studio Code. The Performance in Webstorm is abysmal.
Visual studio code isn\'t being very helpful abo
Fill the include property in the first level of the JSON-object in the tsconfig.editor.json like here:
include
tsconfig.editor.json
"include": [ "src/**/*.ts" ]
It works for me well.
Also you can add another Typescript file extensions if it's needed, like here:
"include": [ "src/**/*.ts", "src/**/*.spec.ts", "src/**/*.d.ts" ]