You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, thanks~! Right now the plugin is only expecting programmatic options, which correlate to the Compiler Options.
If you wanted to use an existing tsconfig.json file, you can parse it at the beginning of your TS task and send along the right pieces.
exportasyncfunctionscripts(task){letdata=require('./tsconfig');// If using tsconfig for "source" you must handle that on your ownletfiles=data.files.map(handler)||'src/**/*.ts';awaittask.source(files).typescript(data.compilerOptions).target('...');}
Hi,
thanks for this project. I was wondering if there is a way to use the options for the typescript compiler coming from the tsconfig.json.
The text was updated successfully, but these errors were encountered: