Source Map - CI/CD用語集の定義
Source mapは、minifyまたはtranspileされた出力内の位置を元のソースへ対応づけるファイルであり、ブラウザやエラートラッカーが本番buildから実際のファイル名と行番号を表示できるようにします。
関連ガイド
Minification - CI/CD Glossary DefinitionMinification shrinks code by removing whitespace, comments, and long names without changing behavior, so the…
Debug Symbols - CI/CD Glossary DefinitionDebug symbols map machine code back to source lines, variables, and types, letting debuggers and crash report…
Transpiler - CI/CD Glossary DefinitionA transpiler translates source from one high-level language to another - TypeScript to JavaScript, modern JS…