|
25 | 25 | "settings": { |
26 | 26 | "window.title": "PowerShell VS Code Extension Development", |
27 | 27 | "debug.onTaskErrors": "prompt", |
28 | | - "editor.tabSize": 4, |
29 | | - "editor.insertSpaces": true, |
30 | | - "files.trimTrailingWhitespace": true, |
31 | | - "files.insertFinalNewline": true, |
32 | 28 | "files.associations": { |
33 | 29 | "**/snippets/*.json": "jsonc", // Use JSONC instead of JSON because that's how VS Code interprets snippet files, and it enables better source documentation. |
34 | 30 | }, |
|
46 | 42 | "powershell.codeFormatting.whitespaceBetweenParameters": true, |
47 | 43 | "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", |
48 | 44 | "typescript.tsdk": "Client/node_modules/typescript/lib", // Lock the TypeScript SDK path to the version we use |
49 | | - "typescript.format.semicolons": "insert", // Code actions like "organize imports" ignore ESLint, so we need this here |
50 | | - "eslint.format.enable": true, // Enable ESLint as defaut formatter so quick fixes can be applied directly |
51 | 45 | "[typescript]": { |
52 | 46 | "editor.defaultFormatter": "esbenp.prettier-vscode", |
53 | 47 | "editor.formatOnPaste": true, |
54 | 48 | "editor.formatOnSave": true, |
55 | 49 | "editor.formatOnSaveMode": "modificationsIfAvailable" |
56 | 50 | }, |
57 | | - "mochaExplorer.configFile": ".mocharc.json", |
58 | | - "mochaExplorer.launcherScript": "test/runTests", |
59 | 51 | "mochaExplorer.autoload": false, // The test instance pops up every time discovery or run is done, this could be annoying on startup. |
60 | 52 | "mochaExplorer.debuggerPort": 59229, // Matches the launch config, we dont want to use the default port as we are launching a duplicate instance of vscode and it might conflict. |
61 | 53 | "mochaExplorer.ipcRole": "server", |
|
95 | 87 | "osx": { |
96 | 88 | "options": { |
97 | 89 | "shell": { |
98 | | - "executable": "/usr/local/bin/pwsh", |
| 90 | + "executable": "pwsh", |
99 | 91 | "args": [ |
100 | 92 | "-NoProfile", |
101 | 93 | "-Command" |
|
324 | 316 | "sourceMaps": true, |
325 | 317 | // This speeds up source map detection and makes smartStep work correctly |
326 | 318 | "outFiles": [ |
327 | | - "${workspaceFolder:Client}/**/*.js", |
328 | | - "!**/node_modules/**", |
329 | | - "!**/.vscode-test/**" |
| 319 | + "${workspaceFolder:Client}/dist/*.js" |
330 | 320 | ], |
331 | 321 | "skipFiles": [ |
332 | 322 | "<node_internals>/**", |
333 | 323 | "**/node_modules/**", |
334 | 324 | "**/.vscode-test/**", |
335 | | - "**/app/out/vs/**" //Skips Extension Host internals |
| 325 | + "**/app/out/vs/**" // Skips Extension Host internals |
336 | 326 | ], |
337 | 327 | "presentation": { |
338 | 328 | "hidden": true |
|
356 | 346 | "sourceMaps": true, |
357 | 347 | // This speeds up source map detection and makes smartStep work correctly |
358 | 348 | "outFiles": [ |
359 | | - "${workspaceFolder:Client}/**/*.js", |
360 | | - "!**/node_modules/**", |
361 | | - "!**/.vscode-test/**" |
| 349 | + "${workspaceFolder:Client}/dist/*.js" |
362 | 350 | ], |
363 | 351 | "skipFiles": [ |
364 | 352 | "<node_internals>/**", |
|
388 | 376 | "sourceMaps": true, |
389 | 377 | // This speeds up source map detection and makes smartStep work correctly |
390 | 378 | "outFiles": [ |
391 | | - "${workspaceFolder:Client}/**/*.js", |
392 | | - "!**/node_modules/**", |
393 | | - "!**/.vscode-test/**", |
| 379 | + "${workspaceFolder:Client}/dist/*.js" |
394 | 380 | ], |
395 | 381 | "skipFiles": [ |
396 | 382 | "<node_internals>/**", |
397 | 383 | "**/node_modules/**", |
398 | 384 | "**/.vscode-test/**", |
399 | | - "**/app/out/vs/**" //Skips Extension Host internals |
| 385 | + "**/app/out/vs/**" // Skips Extension Host internals |
400 | 386 | ], |
401 | 387 | "presentation": { |
402 | 388 | "hidden": true |
|
460 | 446 | "sourceMaps": true, |
461 | 447 | // This speeds up source map detection and makes smartStep work correctly |
462 | 448 | "outFiles": [ |
463 | | - "${workspaceFolder:Client}/**/*.js", |
464 | | - "!**/node_modules/**", |
465 | | - "!**/.vscode-test/**" |
| 449 | + "${workspaceFolder:Client}/dist/*.js" |
466 | 450 | ], |
467 | 451 | "skipFiles": [ |
468 | 452 | "<node_internals>/**", |
|
0 commit comments