Closed timhurkmans closed 7 years ago
typescript({ project: "tsconfig.json", }
Results in:
--module commonjs --target ES3 --project tsconfig.json
Expected:
--project tsconfig.json
Workaround:
typescript({ project: "tsconfig.json", target: "ES5", }
--module commonjs --target ES5 --project tsconfig.json
It messes up my code as tsconfig.json can define another module and target, and I don't want to duplicate the options.
@timhurkmans Fixed in 1.3.2
Please free to reopen if you have any concerns
Results in:
Expected:
Workaround:
Results in:
It messes up my code as tsconfig.json can define another module and target, and I don't want to duplicate the options.