|
1 | 1 | {
|
2 | 2 | "version": "0.2.0",
|
3 | 3 | "configurations": [
|
4 |
| - { |
5 |
| - "name": "Debug Extension (Glint + TS)", |
6 |
| - "type": "extensionHost", |
7 |
| - "request": "launch", |
8 |
| - // this errors. Run `pnpm build` before launching this task |
9 |
| - // "preLaunchTask": "npm: build", |
10 |
| - "autoAttachChildProcesses": true, |
11 |
| - "runtimeExecutable": "${execPath}", |
12 |
| - "outFiles": [ |
13 |
| - "${workspaceFolder}/**/*.js", |
14 |
| - "!**/node_modules/**" |
15 |
| - ], |
16 |
| - "args": [ |
17 |
| - "--extensionDevelopmentPath=${workspaceFolder}/packages/vscode", |
18 |
| - "--disable-extensions", // uncomment to activate your local extensions |
19 |
| - "${workspaceFolder}/test-packages" |
20 |
| - ] |
21 |
| - }, |
22 |
| - { |
23 |
| - "name": "Debug Extension (Glint Only, No TS)", |
24 |
| - "type": "extensionHost", |
25 |
| - "request": "launch", |
26 |
| - "preLaunchTask": "npm: build", |
27 |
| - "autoAttachChildProcesses": true, |
28 |
| - "runtimeExecutable": "${execPath}", |
29 |
| - "outFiles": [ |
30 |
| - "${workspaceFolder}/**/*.js", |
31 |
| - "!**/node_modules/**" |
32 |
| - ], |
33 |
| - "args": [ |
34 |
| - "--extensionDevelopmentPath=${workspaceFolder}/packages/vscode", |
35 |
| - "--disable-extension", |
36 |
| - "vscode.typescript-language-features", |
37 |
| - "${workspaceFolder}/test-packages" |
38 |
| - ] |
39 |
| - }, |
40 | 4 | {
|
41 | 5 | // For this to work, make sure you're running `tsc --build --watch` at the root, AND
|
42 | 6 | // `pnpm bundle:watch` from within vscode directory.
|
|
0 commit comments