0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCode でF5でホーム画面を起動して TypeScript をステップ実行する

Last updated at Posted at 2020-04-10

JavaScript 編は、
VSCode でF5でホーム画面を起動して JavaScript をステップ実行する を見てください。

ゴール

  • F5でホーム画面を起動 (CakePHP以外でもステップ実行までの手順は基本同じ?はずです)
    debugts.gif

書かないこと

  • CakePHP のインストール手順
  • TypeScriptの導入方法

前提

プロジェクトルート 公開ルート ポート
c:\src\cake-app c:\src\cake-app\webroot 8765
  • CakePHP ビルトイン の簡易ウェブサーバ (port:8765) を起動していること
C:\src\cake-app\bin>cake server

Welcome to CakePHP v3.8.11 Console

Version

- version
VScode 1.43.2
Debugger for Chrome 4.12.6
Debugger for Firefox 2.7.1
npm 6.13.4
TypeScript 3.8.3

tree

.
├── node_modules
│   └── typescript
├── package.json
├── src
│   ├── Template
│   │   └── Pages
│   │       └── home.ctp   # ホーム画面
│   └── TS
│        ├── debug.ts      # ステップ実行対象
│        └── tsconfig.json
│
├── tsconfig.json
└── webroot
    └── js
        ├── debug.js       # src/TS/debug.ts のトランスパイル結果
        └── debug.js.map

準備

  1. デバッグ構成ファイルを作る
  1. (お好きな方の) 拡張をインストールしてデバッグ構成ファイルを編集

    ⅰ. Debugger for Chrome

    /.vscode/launch.json
    {
        "version": "0.2.0",
        "configurations": [
            {
                "type": "chrome",
                "request": "launch",
                "name": "Launch Chrome TypeScript",
                "url": "http://localhost:8765/",
                "webRoot": "${workspaceFolder}/webroot"
            }
        ]
    }
    

    ⅱ. Debugger for Firefox

    /.vscode/launch.json
    {
        "version": "0.2.0",
        "configurations": [
            {
                "type": "firefox",
                "request": "launch",
                "name": "Launch Firefox TypeScript",
                "url": "http://localhost:8765",
                "webRoot": "${workspaceFolder}/webroot",
                "pathMappings": [
                    {
                        // サーバ上のTSファイルの場所
                        "url": "http://localhost:8765/src/TS/",
                        // ローカルPCのTSファイルの場所
                        "path": "${workspaceFolder}/src/TS"
                    }
                ]
            }
        ]
    }
    
    
  2. ステップ実行対象を作成

    src/TS/debug.ts
    namespace StepMode.Test {
    
        export class Debug {
    
            public onReady(): void {
                console.log("4.call onReady");
            }
    
            public constructor() {
                console.log("2.call constructor");
            }
        }
    
        console.log("1.create instance");
        const instance = new Debug();
    
        console.log("3.event handle");
        document.addEventListener("DOMContentLoaded", () => instance.onReady());
    }
    
  3. ホーム画面 home.ctp でステップ実行対象を読み込む (<head></head> 内に追記)

    --- a/src/Template/Pages/home.ctp
    +++ b/src/Template/Pages/home.ctp
    @@ -43,6 +43,8 @@ $cakeDescription = 'CakePHP: the rapid development PHP framework';
         <?= $this->Html->css('style.css') ?>
         <?= $this->Html->css('home.css') ?>
         <link href="https://fonts.googleapis.com/css?family=Raleway:500i|Roboto:300,400,700|Roboto+Mono" rel="stylesheet">
    +    <?= $this->Html->script('debug.js') ?>
    +    <!-- ↑同じ <script src="/js/debug.js"></script> -->
     </head>
    
  4. TypeScript 設定ファイル tsconfig.json を編集 (ルートディレクトリで tsc --init して tsconfig.json を生成してから修正する箇所)

    --- a/tsconfig.json
    +++ b/tsconfig.json
    @@ -3,14 +3,14 @@
         /* Basic Options */
    -    "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
    +    "module": "none",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
         // "declarationMap": true,                /* Generates a sourcemap for each corresponding '.d.ts' file. */
    -    // "sourceMap": true,                     /* Generates corresponding '.map' file. */
    +    "sourceMap": true,                     /* Generates corresponding '.map' file. */
    
  5. TSディレクトリ配下に tsconfig.json を作成 (手で作成)

    src/TS/tsconfig.json
    {
        "extends": "../../tsconfig",
        "files": [
            "debug.ts"
        ],
        "compilerOptions": {
          "outFile": "../../webroot/js/debug.js",
        },
    }
    

1. トランスパイル `debug.ts -> debug.js`

```package.json
  "scripts": {
    "tsc_build": "tsc --build ./src/TS",
c:\src\cake-app>npm run tsc_build

ステップ実行

  1. F5でホーム画面を起動して「ブレークモード」になることを確認
    ※ firefoxの場合、ページのリロードが必要な場合あり Troubleshooting
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?