-
Notifications
You must be signed in to change notification settings - Fork 8
Common Errors and Solutions
Phaiax edited this page Mar 13, 2015
·
3 revisions
ArcticTypescript: error : Completion request failed: "TSS command processing error: Error: Could not find file: 'c:/users/****/somefile.ts'."
- This error happens if you try a completion request (or anything else) on a file which is not tracked by ArcticTypescript.
- Make sure your file can be found by ArcticTypescript: It has to be in the
tsconfig.json["files"]
list OR must be referenced (/// <reference path="somefile.ts">
) or imported (import x = require('somefile');
, amd or commonjs) by a file listed intsconfig.json["files"]
. - To catch all files, you can use
tsconfig.json["filesGlob"]