We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 291875d commit 7b162e8Copy full SHA for 7b162e8
powershell/utils/tsp-generator.ts
@@ -31,6 +31,7 @@ async function clearOutputFiles(state: ModelState<PwshModel>) {
31
const readme = './README.md';
32
const tempTypeSpecFiles = './TempTypeSpecFiles';
33
const tspLocation = './tsp-location.yaml';
34
+ const tspconfig = './tspconfig.yaml';
35
36
const protectFiles = new Set<string>();
37
protectFiles.add(psd1);
@@ -43,6 +44,7 @@ async function clearOutputFiles(state: ModelState<PwshModel>) {
43
44
protectFiles.add(readme);
45
protectFiles.add(tempTypeSpecFiles);
46
protectFiles.add(tspLocation);
47
+ protectFiles.add(tspconfig);
48
await clearFolder(outputFolder, [...protectFiles].map((each) => resolveUri(outputFolder, each)));
49
}
50
return;
0 commit comments