Skip to content

Commit

Permalink
cjs instead of umd seems to make angular-cli/TS happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwayson committed Nov 23, 2016
1 parent e142290 commit dc92251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"declaration": true,
"target": "es5",
"module": "umd",
"module": "commonjs",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down

1 comment on commit dc92251

@tomwayson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing this breaks plain old es5 code though, which is not cool.

Please sign in to comment.