Jake McKown
Results
2
comments of
Jake McKown
@jneuendorf I think your `package.json` should also have a `types` field: ```diff // package.json { ... + "types": "index.d.ts" ... } ``` See [Including declarations in your npm package](https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html#including-declarations-in-your-npm-package).
@jneuendorf I think where you have it in the root is the best option for adding a declarations file to a non-TypeScript project. It technically doesn't matter as long as...