情况是我在用 jest 跑 unittest 的时候,发现打的断点是 68 行,但是实际上 hit 的时候是 90 行
下面附上一些配置
{
"compilerOptions": {
"target": "es2018",
"lib": ["esnext"],
"allowSyntheticDefaultImports": true,
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowJs": true,
"checkJs": false,
"sourceMap": true,
"skipLibCheck": true,
"noEmit": true
}
}
1
ochatokori 2019-10-04 10:23:07 +08:00 via Android 1
会不会是没有更新 build…
我有时忘记开 watch 断点漂移才想起来 |
2
enjoyCoding 2019-10-05 11:04:21 +08:00
没更新代码吧
|