I have a specific file that I plan to utilize the .js file generated in node:
import { someFunction } from './otherfile.ts';
How can I compile this? The tsc command is not effective since my tsconfig.json looks like this:
{
"compilerOptions": {
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true
}
}
(In order to use allowImportingTsExtensions, noEmit is required)