ArcticTypescript
ArcticTypescript copied to clipboard
node_path from wrong config
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.
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"
}