-
Notifications
You must be signed in to change notification settings - Fork 46
Description
With the breaking change of removing TypeChecking, I thought it would be a good time to propose something that I have wanted for a long time.
When setting up a new project, I will always have a tsconfig.json file for IDE support. But it is ever so slightly annoying to have to add the "typescriptOptions.tsconfig": true to jspm.config.js/systemjs.config.js every time I set up this plugin.
Would it be possible to assume this by default going forward?
Given that users will now need to rely on type checking in their IDE, it is more essential than ever that transpilation settings that the syntactic transformation options, some of which block the user of certain features, are in sync between one's IDE and plugin-typescript.
Another thing is that sometimes people use both this and plugin-babel on the same chunks of code to verify consistency of certain transpiler behavior.
I think this would strongly benefit new users as this is a gotcha that I frequently have to remind people about and explain how to configure.
Thank you.