Will Medina
Will Medina
have you tried [atom-bugs-nodejs](https://atom.io/packages/atom-bugs-nodejs)? it does support sourcemaps
@Redsandro oh the url was updated to [xatom-debug-nodejs](https://atom.io/packages/xatom-debug-nodejs)
Hi @Kesymaru, are you using a nodejs right away or you have it compiled with a custom sourcemaps directory?
Hi I will investigate this. in the meanwhile you could try `inline-source-map` even though I know is much slower to compile
Probably a bit late but I dealt with the same issues while trying to build a precompiled library excluding the css injection part. it is possible to override the code...
I have created a ES6 angular seed project, you'll find all the same approach of this seed(protractor, karma, etc). https://github.com/willyelm/angular-es6-seed
@giacomoalonzi Please try to access your data parameters as `title` instead `data.title`
do you mean [ng-bootstrap](https://ng-bootstrap.github.io/#/getting-started)? `npm install --save @ng-bootstrap/ng-bootstrap` then: ``` import {NgbModule} from '@ng-bootstrap/ng-bootstrap'; @NgModule({ declarations: [AppComponent, ...], imports: [NgbModule.forRoot(), ...], bootstrap: [AppComponent] }) export class AppModule {} ```