eclipse-typescript icon indicating copy to clipboard operation
eclipse-typescript copied to clipboard

Editor misbehavior while using Linked Folders

Open mttcr opened this issue 10 years ago • 0 comments

Hello, it's a bit related to #44 : I'm using linked folder (to avoid the problems of #242). While editing, I have errors when I reference some files in the linked folder, but they disappear when I save it image image. Even if there is no error shown, I can't ctrl+click on "Test1" to open the class.

I have the following structure: image

typescript prefs:

build.path.exportedFolder=
build.path.sourceFolder=src,deps
compiler.outputDirOption=
compiler.outputFileOption=
eclipse.preferences.version=1

projet conf:

<projectDescription>
    <name>testLinked2</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
        <buildCommand>
            <name>com.palantir.typescript.typeScriptBuilder</name>
            <arguments>
            </arguments>
        </buildCommand>
    </buildSpec>
    <natures>
        <nature>com.palantir.typescript.typeScriptNature</nature>
    </natures>
    <linkedResources>
        <link>
            <name>deps/test1</name>
            <type>2</type>
            <locationURI>WORKSPACE_LOC/testLinked1/src</locationURI>
        </link>
    </linkedResources>
</projectDescription>

mttcr avatar Jul 01 '15 08:07 mttcr