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
As an example, when using try express it should automatically call in JS: const express = require('express') and in TypeScript: import * as express from 'expess'.
Therefore a developer can directly access the package as global variable.
As an example, when using
try express
it should automatically call in JS:const express = require('express')
and in TypeScript:import * as express from 'expess'
.Therefore a developer can directly access the package as global variable.
For JS this is possible with
node --eval "const express = require('express')" -i
with TS this is currently not possible. PR has already been submitted TypeStrong/ts-node#894
The text was updated successfully, but these errors were encountered: