ArcticTypescript icon indicating copy to clipboard operation
ArcticTypescript copied to clipboard

node_path from wrong config

Open maritz opened this issue 9 years ago • 1 comments

For some reason the linter config I get here https://github.com/Phaiax/ArcticTypescript/blob/master/lib/tsconfiglint/tsconfigglobexpand.py#L82 is from the tsconfig.json and not the ArcticTypescript.sublime-settings. Thus the node_path was not found for me.

Resulting Error:

ArcticTypescript: notify : expandglob: [Errno 2] No such file or directory: 'nodejs'

Tested on TS3, ArcticTypescript 0.7.0 on Linux.

As a workaround for now I just put an additional node_path into my tsconfig.json.

maritz avatar Jun 01 '15 09:06 maritz

For some reason that doesn't work for me anymore now. Now I had to add this to my tsconfig.json:

"ArcticTypescript": {
    "node_path": "/home/developer/.nvm/versions/node/v0.12.3/bin/node"
}

maritz avatar Jun 03 '15 10:06 maritz