ide-typescript icon indicating copy to clipboard operation
ide-typescript copied to clipboard

TypeScript and Javascript language support for Atom-IDE

Results 21 ide-typescript issues
Sort by recently updated
recently updated
newest added

Below is my `tslint.json` ```json { "extends": [ "shared-tslint" ] } ``` where `shared-tslint` is a package I have installed containting tslint settings to extend. Expected behavior: I get linter...

The IntelliSense for TypeScript does not update when changes are made to the tsconfig.json or any file in a dependency of a given package. On both Windows and Ubuntu, Atom...

Is there a baseurl config or a way for the package to detect the "baseUrl" in my tsconfig.json? Here is my tsconfig.json: ` { "compilerOptions": { "outDir": "./dist/js/", "sourceMap": true,...

So say a repository's root is at `~/project`, meaning the following files exist (among others): ``` ~/project/package.json ~/project/node_modules ~/project/src/index.ts ~/project/src/tsconfig.json ``` Opening the editor at `atom ~/project/src` will cause all...

It seems that `ide-typescript` ignores the `extends` clause in `tsconfig.json` as if there were no tsconfig at all - i.e., I have my `compilerOptions.lib` set in the parent `tsconfig.json` and...

I'm running my ES6 setup with `NODE_PATH=/src/modules` which allows me to import stuff from that directory without explicitly pointing to a relative or absolute path; e.g. in a file `/src/modules/app-name/dir/index.js`...

### Description When using ide-typescript with JavaScript files, I often see a tooltip like the one below. As far as I can tell, this tooltip isn't providing useful information. As...

This is a pretty broad issue but that's because the behaviour is broadly inconsistent, I can't find any particular pattern that causes this. I'll be digging deeper and adding detail...

I'd expect that `this.p.person.` should have the following autocomplete suggestions: `name` and `age`.

This is an `html` file. http://nimb.ws/nSAGx4

enhancement
help wanted