We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62df947 + ac16794 commit e92246fCopy full SHA for e92246f
1 file changed
src/webassets/filter/typescript.py
@@ -39,7 +39,7 @@ def output(self, _in, out, **kw):
39
with open(input_filename, 'w') as f:
40
f.write(_in.read())
41
42
- args = [self.binary or 'tsc', '--out', output_filename, input_filename]
+ args = [self.binary or 'tsc', '--outFile', output_filename, input_filename]
43
if self.config:
44
args += self.config.split()
45
proc = subprocess.Popen(
0 commit comments