Hi! Is it possible to debug and step code of a sui...
# general
k
Hi! Is it possible to debug and step code of a suitelet in WebStorm? Already before starting debug WebStorm tells me "cannot resolve symbol" for the Netsuite modules in my define statement. And if I actually run/debug my code it stops on the define statement - saying "define is not defined". Any advice is appreciated! This is what the start of my suitelet looks like in WebStorm:
Copy code
/**
 * @NApiVersion 2.x
 * @NScriptType Suitelet
 */


define(['N/search', "N/ui/serverWidget","N/record", "N/log"], function(search, ui, record, log) {
m
You cannot debug within Webstorm. NetSuite has a debugger for SS1.0 and 2.0, with Chrome debugging for 2.1 coming sometime.
k
ok.. thank you for your reply 🙂