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 7aa1bce commit 01367afCopy full SHA for 01367af
packages/core/src/types.ts
@@ -33,7 +33,9 @@ export type BuildTool =
33
| "vite"
34
| "snowpack"
35
| "microbundle"
36
- | "@microsoft/api-extractor";
+ | "@microsoft/api-extractor"
37
+ | "tshy"
38
+ | "@rspack/cli";
39
40
export interface Analysis {
41
packageName: string;
packages/core/src/utils.ts
@@ -164,4 +164,6 @@ export const allBuildTools = Object.keys({
164
snowpack: true,
165
microbundle: true,
166
"@microsoft/api-extractor": true,
167
+ tshy: true,
168
+ "@rspack/cli": true,
169
} satisfies Record<BuildTool, any>) as BuildTool[];
0 commit comments