-
Notifications
You must be signed in to change notification settings - Fork 97
tsconfig.json vs. .compilerrc? #308
Comments
Hi @starkos, I am not 100% sure about how to answer your question as I am not an expert at this, just a passerby, but in my experimentation the
So it needs these settings in order to successfully accomplish steps 4 and 5. There is therefore a chance that you do not need There is also a chance that this approach is overkill. You may want to simply do the conventional thing: have a |
Thanks @ChrisDrostUSE…I need |
If you leave the What you might have to do, require('fs').writeFileSync(
'.compilerc.json',
JSON.stringify({
'application/typescript': require('./tsconfig'),
whateverElse: 'whatever else'
})
); Then in |
A request for clarification: how do
tsconfig.json
and.compilerrc
relate to each other, if at all? Based on my own experiments, it seems like I have to duplicate every setting between the two files; is there a way to link the two?(Using electron-forge, if it matters.)
The text was updated successfully, but these errors were encountered: