Quantcast
Channel: Only 'amd' and 'system' modules are supported alongside --out - Stack Overflow
Browsing index pages (3 articles)

Only 'amd' and 'system' modules are supported alongside --out

When building typescript in VSCode, I get the following error:error TS6082: Only 'amd' and 'system' modules are supported alongside --out.My settings are as follows:tsconfig.json{"compilerOptions":...

View Article


Answer by C Snover for Only 'amd' and 'system' modules are supported...

It means what it says. You can’t use --out/--outFile to bundle modules together for Node.js/CommonJS, since there is no bundle format for CommonJS. Simply don’t use that option for CommonJS and...

View Article


Answer by kca for Only 'amd' and 'system' modules are supported alongside --out

The outFile option in the tsconfig.json file is only available if you setthe module option to system or amd.As described in "Code Generation for Modules", onlymodules created for system or amd canbe...

View Article
Browsing index pages (3 articles)


Latest Images