sourcemap引用错误的行,通常是源文件的最后一行

时间:2015-12-14 00:31:13

标签: javascript typescript source-maps line-numbers grunt-ts

我正在使用grunt-ts(v5.3.0beta.2,tsc v1.7.3)将我的typscript文件编译为javascript,使用inlineSource + inlineSourceMaps进行调试

我的咕噜声配置如下:

grunt.initConfig({
  ts: {
    project: {
      src: ["app/client/**/*.ts"],
      options: {
        removeComments: false,
        failOnTypeErrors: true,
        inlineSourceMap: true,
        inlineSources: true
      },
      outDir: "tmp/built/app"
    }
  }
});

现在chrome获取了源图,但行号总是错误的,大多数情况下它只是代码中的最后一行。

在此示例中,它的引用行号为51,但它应该是第21行:enter image description here

0 个答案:

没有答案