This fixes an issue where TypeScript definitions didn't work because the index.d.ts wasn't in the dist folder.
When using npm/yarn to install the package, only files within dist would be installed, but index.d.ts would be left out, as it wasn't copied over during the build process.
This fixes an issue where TypeScript definitions didn't work because the
index.d.ts
wasn't in thedist
folder.When using npm/yarn to install the package, only files within
dist
would be installed, butindex.d.ts
would be left out, as it wasn't copied over during the build process.