mirror of
https://github.com/jellyfin/jellyfin-sdk-typescript.git
synced 2024-11-23 05:59:44 +00:00
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:
parent
3d298ecc0c
commit
2554eafc1b
@ -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.
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"extends": "@tsconfig/recommended/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"target": "ES6",
|
||||
"module": "ES6",
|
||||
"target": "ES2015",
|
||||
"module": "ES2015",
|
||||
"moduleResolution": "Node",
|
||||
"declaration": true,
|
||||
"noImplicitAny": true,
|
||||
|
Loading…
Reference in New Issue
Block a user