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.
CODEQL_EXTRACTOR_JAVASCRIPT_OPTION_SKIP_TYPES
1 parent 896432b commit 72e99b5Copy full SHA for 72e99b5
javascript/extractor/lib/typescript/src/main.ts
@@ -808,7 +808,7 @@ function handleGetMetadataCommand(command: GetMetadataCommand) {
808
function reset() {
809
state = new State();
810
state.typeTable.restrictedExpansion = getEnvironmentVariable("SEMMLE_TYPESCRIPT_NO_EXPANSION", Boolean, true);
811
- state.typeTable.skipExtractingTypes = getEnvironmentVariable("SEMMLE_TYPESCRIPT_SKIP_EXTRACTING_TYPES", Boolean, false);
+ state.typeTable.skipExtractingTypes = getEnvironmentVariable("CODEQL_EXTRACTOR_JAVASCRIPT_OPTION_SKIP_TYPES", Boolean, false);
812
}
813
814
function getEnvironmentVariable<T>(name: string, parse: (x: string) => T, defaultValue: T) {
0 commit comments