lurdan / ob-typescript

Emacs org-mode babel support for typescript
GNU General Public License v3.0
31 stars 12 forks source link

define out/outFile tsc param depending on compiler version #4

Closed leetwinski closed 1 year ago

leetwinski commented 1 year ago

due to the changes in the tsc compiler since version 5 any execution of ob-typescript block shows this error:

: error TS5101: Option 'out' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.
:   Use 'outFile' instead.

this PR chooses the correct param name based on the current tsc version

lurdan commented 1 year ago

Thanks!