好的,我使用5 Min QUICKSTART创建了一个基本的 Angular 2 Typescript 项目,它已启动并运行。
我的 typescript transpiller 配置为创建源映射:
tsconfig.js
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
}
}
现在我可以在Chrome中看到 *.ts 文件,并且可以毫无问题地调试它们。但是,即使在调试器选项中选中了“显示原始源” , Firefox(和 FireFox 开发者版)也根本不显示 .ts 文件。