Added link reference to ts.syntaxKind. I

had to lookup the source code to find this. I hope it'll help others too
Azharuddin
2018-01-14 05:55:29 +05:30
parent 6b4b4edaae
commit d4ac6574d9

@@ -140,6 +140,8 @@ fileNames.forEach(fileName => {
In this example, we did not need to create a type checker because all we wanted to do was traverse each `SourceFile`.
All possible ```ts.SyntaxKind``` can be found under enum [here](https://github.com/Microsoft/TypeScript/blob/master/src/compiler/types.ts#L80).
## Incremental build support using the language services
> Please refer to the [[Using the Language Service API]] page for more details.