Address ES2015 versioning comments and breaking changes

* Add the switch to ES6/ES2015 to the breaking changes section of the readme
* Add the switch to Axios v1 major version to the breaking changes section of the readme
This commit is contained in:
Fernando Fernández 2022-12-04 22:38:16 +00:00 committed by GitHub
parent 3d298ecc0c
commit 2554eafc1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View File

@ -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.

View File

@ -1,8 +1,8 @@
{
"extends": "@tsconfig/recommended/tsconfig.json",
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"target": "ES2015",
"module": "ES2015",
"moduleResolution": "Node",
"declaration": true,
"noImplicitAny": true,