これは、あなたが見ることができるようにsourceMapオプションがtrue
に設定されている、私はそれが私のアプリケーションをデバッグする必要があるため、これは避けsourceMapファイル
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "wwwroot/app/source/"
},
"exclude": [
"node_modules",
"bower_components",
"wwwroot",
"typings/main",
"typings/main.d.ts"
]
}
私tsconfig.jsonです。
しかし、私は、私は私のリリースモードゴクゴクスクリプトを実行したときにfalseに設定したいように、私は唯一のデバッグモードでそれを必要とします。
強制する方法はありますか--sourceMap=fase
?