Skip to content

Commit d880532

Browse files
committed
Skip lib checks and update base pacakage with eslint
1 parent 95325f6 commit d880532

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@types/chai-as-promised": "7.1.5",
7575
"@types/child-process-promise": "2.2.2",
7676
"@types/clone": "2.1.1",
77-
"@types/eslint": "7.28.0",
77+
"@types/eslint": "7.29.0",
7878
"@types/inquirer": "8.2.1",
7979
"@types/listr": "0.14.4",
8080
"@types/long": "4.0.2",
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"extends": "../../config/tsconfig.base.json",
33
"compilerOptions": {
4-
"outDir": "dist"
4+
"outDir": "dist",
5+
"skipLibCheck": true
56
},
6-
"exclude": [
7-
"dist/**/*"
8-
]
7+
"exclude": ["dist/**/*"]
98
}

packages/firestore/tsconfig.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"extends": "../../config/tsconfig.base.json",
33
"compilerOptions": {
4+
"skipLibCheck": true,
45
"outDir": "dist"
56
},
6-
"exclude": [
7-
"scripts/**/*",
8-
"dist/**/*"
9-
]
7+
"exclude": ["scripts/**/*", "dist/**/*"]
108
}

repo-scripts/prune-dts/tsconfig.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
"target": "es2017",
99
"esModuleInterop": true,
1010
"declaration": true,
11-
"strict": true
11+
"strict": true,
12+
"skipLibCheck": true
1213
},
13-
"exclude": [
14-
"dist/**/*"
15-
]
16-
}
14+
"exclude": ["dist/**/*"]
15+
}

yarn.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3071,7 +3071,7 @@
30713071
"@types/eslint" "*"
30723072
"@types/estree" "*"
30733073

3074-
"@types/eslint@*", "@types/[email protected]":
3074+
"@types/eslint@*":
30753075
version "7.28.0"
30763076
resolved "https://registry.npmjs.org/@types/eslint/-/eslint-7.28.0.tgz#7e41f2481d301c68e14f483fe10b017753ce8d5a"
30773077
integrity sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A==

0 commit comments

Comments
 (0)