diff --git a/README.md b/README.md index 366587fe..a9ecd240 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/tsconfig.json b/tsconfig.json index ba2f8877..ac7a9b9b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,8 @@ { "extends": "@tsconfig/recommended/tsconfig.json", "compilerOptions": { - "target": "ES6", - "module": "ES6", + "target": "ES2015", + "module": "ES2015", "moduleResolution": "Node", "declaration": true, "noImplicitAny": true,