File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed
src/@types/totp-generator Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 102
102
"@firebase/app" : " 0.x"
103
103
},
104
104
"dependencies" : {
105
+ "@firebase/auth" : " ^0.20.11" ,
105
106
"@firebase/component" : " 0.5.21" ,
106
107
"@firebase/logger" : " 0.3.4" ,
107
108
"@firebase/util" : " 1.7.3" ,
113
114
"@firebase/app" : " 0.8.4" ,
114
115
"@rollup/plugin-json" : " 4.1.0" ,
115
116
"@rollup/plugin-strip" : " 2.1.0" ,
117
+ "@types/express" : " 4.17.14" ,
118
+ "@types/mocha" : " ^10.0.1" ,
116
119
"chromedriver" : " 98.0.1" ,
117
120
"rollup" : " 2.79.1" ,
118
121
"rollup-plugin-sourcemaps" : " 0.6.3" ,
119
122
"rollup-plugin-typescript2" : " 0.31.2" ,
120
123
"selenium-webdriver" : " 4.5.0" ,
121
- "typescript" : " 4.7.4" ,
122
- "@types/express" : " 4.17.14" ,
123
- "totp-generator" : " 0.0.14"
124
+ "totp-generator" : " 0.0.14" ,
125
+ "typescript" : " 4.7.4"
124
126
},
125
127
"repository" : {
126
128
"directory" : " packages/auth" ,
Original file line number Diff line number Diff line change
1
+ /**
2
+ * @license
3
+ * Copyright 2022 Google LLC
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ declare module 'totp-generator' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../config/tsconfig.base.json" ,
3
+
3
4
"compilerOptions" : {
5
+ "lib" : [" ES2017" , " dom" , " es6" ],
6
+ "typeRoots" : [" src/@types" , " node_modules/@types" ],
4
7
"outDir" : " dist"
5
8
},
6
9
"exclude" : [
You can’t perform that action at this time.
0 commit comments