We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
In certain case scenarios, the environment will not load the typescript definition files (*.d.ts) from "l2js-client/dist" and subfolders.
As a temporal solution, the following can be added into the "tsconfig.json" of your project: "paths": {"*": ["./node_modules/l2js-client/"]}
"paths": {"*": ["./node_modules/l2js-client/"]}
As a global solution, the typescript definition files should be into it's own "@types/" npm package. @types/l2js-client
@types/l2js-client
So a normal installation would be:
npm install l2js-client npm install --save-dev @types/l2js-client
Please take it into consideration :)
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
In certain case scenarios, the environment will not load the typescript definition files (*.d.ts) from "l2js-client/dist" and subfolders.
As a temporal solution, the following can be added into the "tsconfig.json" of your project:
"paths": {"*": ["./node_modules/l2js-client/"]}
As a global solution, the typescript definition files should be into it's own "@types/" npm package.
@types/l2js-client
So a normal installation would be:
Please take it into consideration :)
Thanks!
The text was updated successfully, but these errors were encountered: