Skip to content

Commit 6540859

Browse files
Switch from deprecated outDir to outFiles
This commit updates task configuration to use current configuration keys and to limit number of warnings displayed in VSCode itself. Similar one: microsoft/vscode-generator-code#59 Thanks!
1 parent 60799e8 commit 6540859

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.vscode/launch.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
],
1212
"stopOnEntry": false,
1313
"sourceMaps": true,
14-
"outDir": "${workspaceRoot}/out/src"
14+
"outFiles": [
15+
"${workspaceRoot}/out/src/**/*.js"
16+
]
1517
},
1618
{
1719
"name": "Launch Tests",
@@ -21,7 +23,9 @@
2123
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
2224
"stopOnEntry": false,
2325
"sourceMaps": true,
24-
"outDir": "${workspaceRoot}/out/test"
26+
"outFiles": [
27+
"${workspaceRoot}/out/test/**/*.js"
28+
]
2529
}
2630
]
2731
}

0 commit comments

Comments
 (0)