Home

tailwind-ctp-intellisense @master - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / .vscode / launch.json
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  "version": "0.2.0",
  // List of configurations. Add new configurations or edit existing ones.
  "configurations": [
    {
      "type": "extensionHost",
      "request": "launch",
      "name": "Launch Client",
      "runtimeExecutable": "${execPath}",
      "args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-tailwindcss"],
      "stopOnEntry": false,
      "sourceMaps": true,
      "outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
      // "preLaunchTask": "npm: dev"
    },
    {
      "type": "node",
      "request": "attach",
      "name": "Attach to Server 6011",
      "address": "localhost",
      "protocol": "inspector",
      "port": 6011,
      "sourceMaps": true,
      "outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
    },
    {
      "type": "node",
      "request": "attach",
      "name": "Attach to Server 6012",
      "address": "localhost",
      "protocol": "inspector",
      "port": 6012,
      "sourceMaps": true,
      "outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
    }
  ]
}