-
Notifications
You must be signed in to change notification settings - Fork 204
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
Option to prevent rewriting tsconfig.json file #703
Comments
👍 We're using |
The current atom-ts options in |
👍 in this case as we want grunt to ignore this option |
If it's going to be a key in |
This feature is fairly annoying for my project's setup and I'd be happy to implement this. I'm currently having some trouble getting the project to build; are their docs on this? When I run grunt, I get a ton of errors like: atom-typescript/lib/main/atom/typescriptGrammar.ts(183,53): error TS2503: Cannot find namespace 'ts'. |
I realized that the grunt file was broken (#4). I'm working on this now. |
The rewriteTsconfig flag enables users to prevent Atom-Typescript from rewriting their tsconfig.json. The flag defaults to true, so users who upgrade won't observe any different behavior. The FAQ and tsconfig docs have been modified to reflect rewriteTsconfig. This resolves TypeStrong#703.
The rewriteTsconfig flag enables users to prevent Atom-Typescript from rewriting their tsconfig.json. The flag defaults to true, so users who upgrade won't observe any different behavior. The FAQ and tsconfig docs have been modified to reflect rewriteTsconfig. This resolves TypeStrong#703.
@basarat The tsconfig now stopped automatically recognising new files with the following error in the console:
|
Is there any quick fix for this or shall I roll back to previous version? Thanks! |
up, i have the same issue |
@tomitrescak rollback for now please. Pinging @sszuflita for investigation 🌹 |
@tomitrescak nevermind. Hotfix released : https://github.com/TypeStrong/atom-typescript/releases/tag/v7.11.0 hopefully that fixes it 🌹 |
it work well for me, thanks |
For people that don't care about keeping
files
in sync (for other IDE use) or just don't want us messing with theirtsconfig.json
file formatting, provide an option to disable tsconfig.json overwritingtsconfig.json
as that file is available totsconfig.ts
(our code that rewritestsconfig.json
)tsconfig.ts
to use this optionThe text was updated successfully, but these errors were encountered: