I’m trying to start programming with Durandal and AMD modules in VS 2013. In c# I’m using intellisense heavily and I would like to use it also in AMD modules. Is there any way to enable this in VS 2013? I have already tried this approach http://landofjoe.com/blog/ill-take-my-durandal-with-intellisense-please but it works only in VS 2012.
Intellisense in VS 2013 for javascript AMD modules
871 Views Asked by dnf At
2
There are 2 best solutions below
0
Orif Khodjaev
On
I've just made intellisense work with Durandal and all other stuff in Visual Studio 2013, Update 5, after reading this blog post, though it should work with Update 4 too.
Delete that require.intellisense.js from your project, add _references.js if you don't have one into your Scripts folder put into the first line this:
/// <reference path="require.js" start-page="/index.html" />
Of course reference path should be correct for your case.
That's it! Now you should have intellisense working.
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in INTELLISENSE
- Visual Studio 2013 crashes when writing opening angle bracket
- Special characters in xaml may kill Intellisense
- Visual Studio 2013 Intellisense Not Updating When Header File Changed in Other Project
- C++: VS IntelliSense and the return value of std::async
- VSCode intelliSense autocomplete for javascript
- c# Intellisense VS2013 tooltip doesn't show XML comments (i try all)
- C# like XML documentation for existing C++ types from within Visual Studio
- OmniSharp ignoring #if / #endif blocks in Visual Studio Code (0.1.0 - 0.5.0)
- Visual Studio 2013 Razor intellisense not recognizing the start of a lambda expression
- Include file in solution explorer without it being a build dependency
- Can Intellisense recognize javascript prototype functions?
- IntelliSense & _references.js support for files not included in the project
- Prevent ReSharper 9.1 from auto-inserting <> angle brackets when autocompleting generic type
- How to enable intellisense and syntax highlighting for classic ASP in Visual Studio 2013
- How to exclude library from autocomplete in Netbeans?
Related Questions in VISUAL-STUDIO-2013
- couldn't copy pdb file to another directory while consuming wcf web service
- XSD.exe Generating Classes with type Object instead of XSD defined type
- Can I deploy multiple instances of my application on the same windows phone?
- Cannot "Go To Definition" in Visual C++ 2013
- Get date Minus 1 day but at exacty 4 AM
- How to Create unit test cases from Dll in VS 2013
- Can I use free() formally in VS2013?
- Is it okay to cancel Visual Studio installation? And can I resume it?
- Add a picture to Picture Control in a dialog box (error RC2108: expected numerical dialog constant)
- Within a .vcxproj file what are the possible values for the <ConfigurationType> and what do those values mean?
- What is the latest .NET Framework that works with WCF RIA Services and EF 5.0 in a Silverlight 5 LOB application?
- Labels turned dark when printing as graphics in vb 2013.
- WiX and custom extensions for primary output?
- Avoiding installation of IIS Express 8 during an unattended install of Visual Studio 2013
- VS Database Project User Creation Error
Related Questions in DURANDAL
- jQuery function sync call
- Animate a reused view on click
- Unable to call save method in Breeze controller
- Model structure in Durandal resembling "classes"
- best practice for integration of jquery plugin into durandal knockout SPA
- Applying bindings to multiple elements in knockout
- using compose data-bind with another data-binding
- How to dispose of a viewmodel in Durandal after deactivation
- How to open a new tab with router.navigate in TypeScript
- Composing an HTML view with conditional logic
- Durandal navigation: attr href binding not working
- KnockoutJS access active item created via activator forItems
- Additional pages with SPA
- SPA - BreezeJS - Entity Framework - Error with predicate
- Unable to Process binding
Related Questions in JS-AMD
- RequireJS: module ID vs module name
- Can't access dependency object fields in require.js - Cannot read property of undefined
- jQuery plugin + AMD = how to access functions?
- AMD plugin boilerplate: how to execute the plugin in non-AMD environment?
- Conventional jquery plugin vs AMD jquery plugin
- Intellisense in VS 2013 for javascript AMD modules
- Mocha + RequireJS = AMD testing
- What's the difference between Require.js and simply creating a <script> element in the DOM?
- Basic RequireJS Help - How do I call / define a function? Using onclick and jquery as well
- The RequireJS order plugin and Dojo 1.7.1
- Why did Underscore.js remove support for AMD?
- AMD / Require JS - How to load files on demand only
- Dojo transition from non-AMD project to AMD
- Backbone.js model's destroy method does not trigger success or error event
- Making requirejs modules AMD compliant
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Unfortunately, no. You would have to modify the
require.intellisense.jsfile yourself to get it to work. This fellow that answered the question linked here seems to have gotten it to work for himself.