tsc error due to passing paths in the commandline on all the exercises
aditya211935 opened this issue · 2 comments
aditya211935 commented
error TS6064: Option 'paths' can only be specified in 'tsconfig.json' file or set to 'null' on command line.
is returned in "Checking types..."
This is due to paths
being specified in tsconfig.json and the cli parsing the tsconfig.json file and converting it into commandline arguments. However, paths
can't be converted hence the error.
aditya211935 commented
mattpocock commented
@aditya211935 Thanks for the report! Fixed this upstream. It now creates a temporary tsconfig.json file while running the tests to get around the paths issue.