WebStorm 2016.3.3 Linux can't debug Meteor Default App!

I have set breakpoints on this code on lines 8, 13, and 20 but after running the app in debug mode, no breakpoints are hit at all! Any ideas why? Thanks!

import { Template } from 'meteor/templating';
import { ReactiveVar } from 'meteor/reactive-var';

import './main.html';

Template.hello.onCreated(function helloOnCreated() {
// counter starts at 0
this.counter = new ReactiveVar(0);
});

Template.hello.helpers({
counter() {
return Template.instance().counter.get();
},
});

Template.hello.events({
'click button'(event, instance) {
// increment the counter when button is clicked
instance.counter.set(instance.counter.get() + 1);
},
});
0
2 comments

the issue is tracked as https://youtrack.jetbrains.com/issue/WEB-25102; please follow it for updates

3
Avatar
Permanently deleted user

Very frustrating. I was thinking IntelliJ had the perfect IDE for Meteor development until this.

0

Please sign in to leave a comment.