情况是我在用 jest 跑 unittest 的时候,发现打的断点是 68 行,但是实际上 hit 的时候是 90 行
下面附上一些配置
- tsconfig
{
"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
}
}
- Debug Configuration

- Webstorm version

