I'm looking at moving over to Typescript and currently looking at doing this slowly if possible file by file.
Now the system I currently have is built with Webpack and I'm wanting to continue this for building my overall bundle.
I have a .d.ts file for the definition but I need my file to continue importing which currently is throwing an error.
/// <reference path="../../../../vendor/src/foo.d.ts" />
import foo = require('../../../../vendor/src/foo.js');
foo('something');
This currently is throwing errors I have also tried without the reference path and this seems to raise an error that it is not a module. Currently the only way I can have no errors raised is not importing and simply adding the reference but this will mean that webpack will not know the location of my file.
Any ideas I have searched quite a lot but I can't really make sense of importing JS files into Typescript.
What about simply rename
foo.js
tofoo.ts
(it may require some additional steps but often it works fine) and then rewrite your snippet to:For webpack all you need is to
declare
therequire
function and do what you are already used to:The
require
function type definition is present here : https://github.com/TypeStrong/ts-loader#loading-other-resources-and-code-splittingIf you want to use
foo
in a stronger manner... recommend porting it over to.ts
as well instead of struggling to build and then maintain a.d.ts
file for it.