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
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
Opening the editor at atom ~/project/src will cause all imports targeting node modules to be marked as missing: "Cannot find module xxx". Typescript, though, has no problem resolving modules as expected,
cd~/project/src
../node_modules/.bin/tsc # works just fine and transpiles files as expected
The result of running the commands above will be the creation of an index.js file with the appropriate imports as configured in tsconfig.json.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
So say a repository's root is at
~/project
, meaning the following files exist (among others):Opening the editor at
atom ~/project/src
will cause allimport
s targeting node modules to be marked as missing: "Cannot find module xxx". Typescript, though, has no problem resolving modules as expected,The result of running the commands above will be the creation of an
index.js
file with the appropriate imports as configured intsconfig.json
.The text was updated successfully, but these errors were encountered: