thednp/bootstrap.native

types location needs to be fixed in package.json

yogeshlonkar opened this issue · 1 comments

Types have been moved to types/ from src. But in released package it still points to old location

"types": "src/index.d.ts",

Because of this typescript fails to load types

Correct location should be types/index.d.ts

- "types": "src/index.d.ts",
+ "types": "types/index.d.ts",

@yogeshlonkar can you please confirm the master branch in regards to types please?

Thank you