Skip to content

Commit d5efb21

Browse files
committed
PR Feedback
1 parent 11bd387 commit d5efb21

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

packages-exp/auth-compat-exp/demo/rollup.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ const plugins = [
2727
resolveModule(),
2828
typescriptPlugin({
2929
typescript,
30-
compilerOptions: {
31-
allowJs: true,
32-
target: 'es5'
33-
},
3430
include: ['../**/*.ts']
3531
}),
3632
json(),

packages-exp/auth-exp/internal/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
* limitations under the License.
1616
*/
1717

18+
/**
19+
* This interface is intended only for use by @firebase/auth-compat-exp, do not use directly
20+
*/
1821
export * from '../index';
1922

2023
import { assert } from '../src/core/util/assert';

packages-exp/auth-exp/rollup.config.internal.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,14 @@ const util = require('./rollup.shared');
2727

2828
const nodePlugins = [
2929
typescriptPlugin({
30-
typescript,
31-
clean: true,
32-
abortOnError: false
30+
typescript
3331
}),
3432
json()
3533
];
3634

3735
const browserPlugins = [
3836
typescriptPlugin({
39-
typescript,
40-
clean: true,
41-
abortOnError: false
37+
typescript
4238
}),
4339
json()
4440
];

0 commit comments

Comments
 (0)