Have you heard about the latest Deno, a TypeScript runtime?
An important distinction between Deno and traditional TypeScript is that the file extension must be included in the import statement. For example:
import foo from './bar.ts'
^^
I am interested in writing code that can work with both Deno and Webpack.
How can I configure Webpack to allow imports with the .ts extension like shown above?
Additionally, how can I resolve the following error in VSCode?