web-essentials

Missing Typescript Options in Web Essential for Visual Studio 2012

柔情痞子 提交于 2019-12-05 22:29:01
I am setting up Visual Studio 2012 and TypeScript. Issue I am coming across is, Web Essentials in Visual Studio 2012->Tools->Options-> Web Essentials->TypeScript all options are missing (Screen Shot attached) . Link ( http://www.drdobbs.com/windows/working-with-typescript-in-visual-studio/240154792 ) Figure #6 which mentions all possible options which should be available about same and I was referring "TypeScript Revealed" book which also shows same options (Page #16). What could be potential issue/missing configuration? Thanks !! Web Essentials has removed all the TypeScript options that are

JavaScript IntelliSense list in VS 2013 for a custom script TOO LONG. How to suppress some items?

孤街醉人 提交于 2019-12-05 15:41:52
I will start by first asking 2 questions so If anyone knows it doesn't have to read this long post: But how do I suppress enormous list of undesired items in IntelliSense list for a custom JavaScript file (be it .js or .ts - typescript with compilation)? How can I fine control what I would need? _references.js seems like a good starting point (for global reference) Can anybody explain how .validate-vsdoc.js and .intellisense.js and /// When I watched Mads Kristensen's video Visual Studio: C# class Intellisense in JavaScript/TypeScript I noticed that Mads' Intellisense for his "data" JavaScript

Typescript will not properly compile in VS2012

我怕爱的太早我们不能终老 提交于 2019-12-05 15:30:34
问题 For no clear reason, Typescript has suddenly stopped reliably compiling into JS code. Using VS2012, Typescript for VS ver 0.8.3.1 and Web Essentials ver 2.6 (set to "Compile on Save"). I can create a new Typescript file and make simple changes to it (such as export a simnple var or function). I can save TS file and see the JS translation. HOWEVER, once I add one or more TS definition files (I'm using AMD) and then edit the TS file, NO FURTHER CHANGES APPEAR IN THE CORRESPONDING JS FILE. Edits

Chrome not loading CSS source maps?

两盒软妹~` 提交于 2019-12-05 12:11:02
问题 Until recently, my Chrome browser was loading CSS source map files correctly. Now, it is not. The setting is on: And the CSS files have a source mapping tag at the bottom: /*# sourceMappingURL=Home.cshtml.css.map */ But the Network tab and Fiddler2 show that Chrome is not even trying to load the source map file. Is there something that I'm missing? Is the sourceMappingURL syntax correct? I've toggled the "Enable CSS source maps" setting on and off. Chrome version: 44.0.2403.30 beta-m

How can I disable JSCS in Web Essentials for Visual Studio 2013?

天涯浪子 提交于 2019-12-05 11:59:31
问题 How might I disable JSCS in the latest version of Web Essentials for Visual Studio 2013? I was unable to find a relevant option in the menu. I tried setting the JSCS configuration to ignore all files. This caused it to occasionally generate messages that wouldn't leave my Error List panel until I cleaned the solution. 回答1: Web Essentials 2013 for Update 4 supports a .weignore file where you can disable JSCS, or other linters and compilers, independently of each other. See https://github.com

TypeScript, Html & JS file nesting in Visual Studio 2015

▼魔方 西西 提交于 2019-12-03 11:42:12
How do I manage/control the nesting of TypeScript files in Visual Studio? I am getting a mix of nested & not nested files, I'm not sure how/why, as shown below. The default for JavaScript files in a TypeScript project is to exclude them rather than nest them - but there are several ways you can nest them if you prefer. You can hack the registry... or hand-crank your project file's XML... but the easier option is to let Mads Kristensen do it for you with his File Nesting Extension . You right-click on the .js file and select "Nest File". It will then show a dialog for you to choose the file to

How to compile Bootstrap LESS source in VS 2013

霸气de小男生 提交于 2019-12-03 06:52:48
I have visual studio 2013 Ultimate Update 4 plus Web Essentials installed and updated. I download bootstrap V3.3.1 source I copied the css, js, fonts and less folder to visual studio. Now I want to compile all .less files after my edits there to overwrite the bootstrap.css file, I selected all files in solution explorer and right click but all Web Essentials menu items disabled. What are the steps I should follow to compile all files to .css file or should I use a different tool than Web Essentials? For the record the current Web Essentials will re-compile any compiled files when edits occur,

Can I Install an Older Version of the VS Extension “Web Essentials 2012”?

不问归期 提交于 2019-12-02 01:31:55
问题 It has removed the TypeScript functionality I've been relying on, and my morning of productivity is now looking pretty shot. I'm on a clean machine but it's already pulled in the new 3.0 version that lacks the parts I was benefiting the most from. 回答1: You can go back a version to 2.9 using this link: http://vswebessentials.com/nightly/webessentials2012-2.9.vsix TypeScript was removed in version 3 as the features are all moving into the official TypeScript extension. 回答2: Download and install

How to ignore certain LESS files in Web Essentials LESS compiling? (Bootstrap)

自古美人都是妖i 提交于 2019-11-30 13:44:14
问题 I've set up Web Essentials 2013 (in Visual Studio 2012) and loaded in the default Twitter Bootstrap LESS source files. Auto-build and minification is working perfectly, except Web Essentials quite overdoes the job. When I select " bootstrap.less ", make a change and save it, Web Essentials creates a new " bootstrap.css " as well as a " bootstrap.min.css " with everything inside I need. But when I edit e.g. buttons.less , it creates a buttons.css (and buttons.min.css ) too (with all the

How can I configure Web Essentials 2013 to ignore files?

痞子三分冷 提交于 2019-11-30 13:40:04
问题 I have a fresh MVC 5.1 web app project in VS 2013 (Update 1) w/ Web Essential 2013 (latest as of today) installed. After building the project, Web Essentials scans for javascript files and post messages to the output window for any issues it finds. For a brand new MVC 5.1 project, it generates over 11,000 messages - not really useful. I've tried two methods to get it to ignore the offending javascript files that are included with new MVC 5 projects by default: Used the Web Essentials > Edit