Skip to content

Commit 217b7c4

Browse files
authored
fix: add skipLibCheck: true to tsconfig.build.json files that were missing it (#1767)
1 parent aa72091 commit 217b7c4

File tree

10 files changed

+31
-9
lines changed

10 files changed

+31
-9
lines changed

.changeset/chubby-zoos-hug.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"@launchpad-ui/overlay": patch
3+
"@launchpad-ui/tooltip": patch
4+
"@launchpad-ui/button": patch
5+
"@launchpad-ui/portal": patch
6+
"@launchpad-ui/icons": patch
7+
"@launchpad-ui/table": patch
8+
"@launchpad-ui/form": patch
9+
"@launchpad-ui/vars": patch
10+
"@launchpad-ui/box": patch
11+
---
12+
13+
add skipLibCheck for tsconfing.build.json

packages/box/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/button/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/form/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/icons/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/overlay/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/portal/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/table/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/tooltip/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

packages/vars/tsconfig.build.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"extends": "../../tsconfig.base.json",
33
"include": ["src/*.ts", "src/*.tsx"],
44
"compilerOptions": {
5-
"outDir": "./dist"
5+
"outDir": "./dist",
6+
"skipLibCheck": true
67
}
78
}

0 commit comments

Comments
 (0)