Skip to content

Commit

Permalink
Fix msal-angular exports to properly support IE11, fixes #765 #414
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonnutter committed Jun 24, 2019
1 parent c67499d commit baf0509
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/msal-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
"msal",
"oauth"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"main": "./lib-commonjs/index.js",
"module": "./lib-es6/index.js",
"types": "./lib-commonjs/index.d.ts",
"engines": {
"node": ">=0.8.0"
},
Expand Down
1 change: 1 addition & 0 deletions lib/msal-angular/samples/MSALAngularDemoApp/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
2 changes: 1 addition & 1 deletion lib/msal-angular/samples/MSALAngularDemoApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"rxjs": "^5.1.0",
"ts-helpers": "^1.1.1",
"zone.js": "^0.8.4",
"@azure/msal-angular": "0.1.2"
"@azure/msal-angular": "file:../.."
},
"devDependencies": {
"@angular/cli": "^1.0.1",
Expand Down

0 comments on commit baf0509

Please sign in to comment.