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
Some of the yarn scripts that execute TypeScript files via ts-node fail with an error of "Emit skipped", because they target files that are outside of tsconfig.json's rootDir (as discussed here).
To fix this, TypeScript project settings must be changed so that the files run by ts-node are among those that get compiled into JS.
Some of the
yarn
scripts that execute TypeScript files viats-node
fail with an error of "Emit skipped", because they target files that are outside of tsconfig.json'srootDir
(as discussed here).To fix this, TypeScript project settings must be changed so that the files run by
ts-node
are among those that get compiled into JS.The most targeted way of achieving that is to add tsconfig overrides for
ts-node
: https://typestrong.org/ts-node/docs/configuration/#via-tsconfigjson-recommendedSee: TypeStrong/ts-node#1595
The text was updated successfully, but these errors were encountered: