在github上发布此内容,但不确定这是否适合发布。我使用最新的angular-cli(beta.18)创建了一个项目。似乎源图是不正确的,因为开发工具中的断点不反映它们的设置位置:
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent extends OnInit {
ngOnInit(): void {
this.dosomething();
}
title = 'app works!';
dosomething() {
this.title = "trying to do something";
this.title = "trying to do something else";
}
}
使用angular-cli beta.18构建项目的其他任何人都看到了这个问题吗?
github中的问题: https://github.com/angular/angular-cli/issues/1519
/埃里克
答案 0 :(得分:0)
我的一个快速解决方法是更新项目中的文件node_modules/angular-cli/models/webpack-build-development.js
,并将cheap-module-source-map
替换为source-map
。
真烦人的问题,几乎让它生气了:))
答案 1 :(得分:0)
这似乎已在最新发布的beta.19-3中得到解决