Skip to content

Commit

Permalink
build: keep classnames in build files #494
Browse files Browse the repository at this point in the history
  • Loading branch information
Ffloriel committed Feb 22, 2022
1 parent f2a9c5a commit b2b92fc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scripts/build.ts
Expand Up @@ -16,7 +16,9 @@ const rollupBaseConfig: RollupOptions = {
tsconfig: "./tsconfig.json",
sourceMap: false,
}),
terser(),
terser({
keep_classnames: true,
}),
],
};

Expand Down Expand Up @@ -91,9 +93,9 @@ const extractorAPIBaseConfig: IExtractorConfigPrepareOptions = {
default: {
logLevel: ExtractorLogLevel.Warning,
},
"ae-missing-release-tag": {
logLevel: ExtractorLogLevel.Warning,
},
"ae-internal-missing-underscore": {
logLevel: ExtractorLogLevel.None,
}
},
tsdocMessageReporting: {
default: {
Expand Down

0 comments on commit b2b92fc

Please sign in to comment.