Skip to content

Commit

Permalink
Merge pull request #341 from jellyfin/es6
Browse files Browse the repository at this point in the history
Target ES6 properly
  • Loading branch information
thornbill authored Dec 5, 2022
2 parents 12ff58b + 2554eaf commit f3af345
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ await api.logout();

## Breaking Changes

### v0.8.0

* The library is now fully targeted to ES6/ES2015.
[#341](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/341)
* Axios received a major version upgrade.
[#300](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/300)

### v0.7.0

* Renamed package to @jellyfin/sdk.
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ES5",
"target": "ES2015",
"module": "ES2015",
"moduleResolution": "Node",
"declaration": true,
"noImplicitAny": true,
"outDir": "lib"
Expand Down

0 comments on commit f3af345

Please sign in to comment.