Context: NOT node. Rather, I'm targeting a C# wrapper around JScript (ES3 mostly.) So I don't want to use explicit export/import technologies. I just want my d.ts files to be parsed and used in VSCode to resolve symbols.
I'm trying to separate my custom types from my source folder but…
Top comments (1)
My work around is as follows:
@typesfolders that I want to reference.tsconfig.jsonI havewhich causes VSCode to parse the
declarestatements therein.I expect that I will still have to include a
typeRootsso that compilation works. Currently the compilation process (which involves runningtscand then renaming the resulting.jsfiles to.rror.ri) complains about the symbols that VSCode can see buttsccan't.