You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the example from your other repo (examples/lib-r-math.js/typescript) I can 'npm run build' the webpack bundle without issue.
However, 'typescript ➤ tsc ./index.ts' results in 66 errors, all TS2307, indicating modules that cannot be loaded. Indeed, the "import Something from 'some/path'" point to things that do not exist in the node_modules/lib-r-math.js/dist/src/ tree.
So, how to build with tsc if I need to use a method from lib-r-math.js? TIA for your guidance.
The text was updated successfully, but these errors were encountered:
Using the example from your other repo (examples/lib-r-math.js/typescript) I can 'npm run build' the webpack bundle without issue.
However, 'typescript ➤ tsc ./index.ts' results in 66 errors, all TS2307, indicating modules that cannot be loaded. Indeed, the "import Something from 'some/path'" point to things that do not exist in the node_modules/lib-r-math.js/dist/src/ tree.
So, how to build with tsc if I need to use a method from lib-r-math.js? TIA for your guidance.
The text was updated successfully, but these errors were encountered: