typescript-closure-compiler icon indicating copy to clipboard operation
typescript-closure-compiler copied to clipboard

Patches the TypeScript compiler to generate JSDoc annotations

Results 5 typescript-closure-compiler issues
Sort by recently updated
recently updated
newest added

```typescript type tSomeType = { value: number, parent: tSomeType } let a: tSomeType; a.value = 42; console.log(a); ``` ``` /home/gheja/[...]/node_modules/typescript-closure-compiler/typescript.js:42929 throw e; ^ RangeError: Maximum call stack size exceeded at...

The call of `ts.findConfigFile()` in file tscc on line 91 is missing `fileExists` parameter. ``` configFileName = ts.findConfigFile(searchPath); ``` ``` /home/gheja/[...]/node_modules/typescript-closure-compiler/typescript.js:42316 if (fileExists(fileName)) { ^ TypeError: fileExists is not a...

There seems to be issue with newlines in your dist files. I fixed it by using `dos2unix` to convert all new lines on all the dist files. Then `tscc` was...

Are there plans to upgrade the compatibility version to TS 2? If not, is there a guide to doing so?