Visual Studio 2015 intellisense for RequireJS modules

30 Views Asked by At

I am working on a React project, using RequireJS to manage my client side libraries. However Intellisense does not seem to grasp React inside my modules when I do a

define(
    ['react'],
    function (React) {
        ...
    }
)

How can I fix this?

I write in JSX, but it doesn't work either when I edit ``.js` files.

0

There are 0 best solutions below