-
Notifications
You must be signed in to change notification settings - Fork 202
Move compile on save to ide
key
#324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I just found out about: https://github.com/TypeStrong/atom-typescript/blob/master/docs/faq.md#i-dont-want-atom-typescript-compiling-my-js This is a workaround for now, however I may have other tools that I do want to compile-on-save. In general, I think it is a bad idea to combine |
Agreed. We should move |
Is there be a situation where you would _not_ want Visual Studio or IntelliJ to compile on save but you _would_ want atom to compile on save? If the answer to the above question is yes, then I believe this should be put into an If it is going to end up in a general |
We did discuss it : microsoft/TypeScript#2326 I just left another comment microsoft/TypeScript#2326 (comment) |
TL;DR: Provide a way to disable the build part of
atom-typescript
but retain the IDE features (auto-complete, syntax highlighting, etc.)I have a project that leverages a number of technologies that require a build step. I am using gulp as my build system. I would like to be able to use
atom-typescript
, but I do not want it to be building things for me, I just want it for the IDE features.From what I can tell, there isn't a way that I can disable the build-system features of
atom-typescript
while retaining the rest of the features.gulp-typescript
usestsconfig.json
, so as long asatom-typescript
continues to usetsconfig.json
for its configuration then everything should stay in sync.The reason auto-compilation is a problem is because my build system does more than a default TypeScript compile. After the typescript files are built, they need to be processed and put in the correct location.
atom-typescript
is currently creating intermediate files that should not exist for longer than it takes to run a build.Also,
atom-typescript
doesn't supportrootDir
yet, though I imagine this is a temporary problem.The text was updated successfully, but these errors were encountered: