Skip to content

Commit bbd285b

Browse files
author
steveluc
committed
More tips.
1 parent af3c950 commit bbd285b

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,12 @@ Tips
109109
the 'node\_path' setting to your Preferences.sublime-settings file.
110110
The value of the 'node\_path' setting should be the pathname of the
111111
node executable as in '/usr/myinstalldir/node'.
112-
112+
8. When you open a file f.ts, the server will first check if f.ts is
113+
configured by a tsconfig.json project. If so, f.ts becomes part of
114+
that project. If not, then the server checks to see if f.ts is
115+
referenced by any open projects. If not, a new inferred project is
116+
created for f.ts and the files in the inferred project are those
117+
transitively referenced by comments in f.ts. Coming in a future
118+
release will be a way to list the files in each configured or
119+
inferred project. Also coming will be a way to see the current set
120+
of compiler diagnostics for each project.

TypeScript.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,6 @@ def run(self, text):
14241424

14251425
# this is not always called on startup by Sublime, so we call it
14261426
# from on_activated or on_close if necessary
1427-
# TODO: get abbrev message and set up dictionary
14281427
def plugin_loaded():
14291428
global cli
14301429
print('initialize typescript...')

0 commit comments

Comments
 (0)