I have a pure front-end project (folder) using the following technologies:
- gulp (with gulpfile.js and gulpfile.config.js)
- bower
- npm
- TypeScript (compiled with gulp using npm package 'gulp-typescript') and configured with a tsconfig.json file.
- the project has a src folder containing the .ts files.
- no .NET framework dependency no C# file to compile.
Everything is well configured and compiling correctly using command line (gulp or npm run).
Is Visual Studio 2015 able to open and build this kind of projects?
I have tried a workaround by adding a project.json file in the root folder. VS 2015 created an .xproj after that and succeeded to manage bower and npm dependencies and also to run gulp tasks. but the TypeScript compilation seems broken and VS is using his default compiler (not npm one).