Skip to content

Commit 7bf89e6

Browse files
author
Fil Maj
authored
chore: tsconfig skiplibcheck:true - dont typecheck dependency d.ts files (#1913)
1 parent 220da72 commit 7bf89e6

File tree

9 files changed

+18
-9
lines changed

9 files changed

+18
-9
lines changed

packages/cli-test/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"noUnusedLocals": true,
1010
"noUnusedParameters": true,
1111
"outDir": "dist",
12-
"sourceMap": true,
12+
"skipLibCheck": true,
13+
"sourceMap": true
1314
},
1415
"extends": "@tsconfig/recommended/tsconfig.json",
1516
"include": [

packages/logger/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/oauth/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es5",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/rtm-api/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/socket-mode/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/types/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/web-api/test/integration/ts-4.7-project/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

packages/web-api/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"noUnusedLocals": true,
99
"noUnusedParameters": true,
1010
"outDir": "dist",
11-
"sourceMap": true,
11+
"skipLibCheck": true,
12+
"sourceMap": true
1213
},
1314
"extends": "@tsconfig/recommended/tsconfig.json",
1415
"include": [

packages/webhook/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"target": "es2017",
45
"module": "commonjs",
56
"declaration": true,
67
"declarationMap": true,
78
"sourceMap": true,
89
"outDir": "dist",
9-
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"noUnusedLocals": true,
1213
"noUnusedParameters": true,

0 commit comments

Comments
 (0)