Skip to content

Commit a59914c

Browse files
authored
fix(create-vite): skip lib check in tsconfig templates (#12591)
1 parent 8582e2d commit a59914c

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

packages/create-vite/template-preact-ts/tsconfig.node.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4+
"skipLibCheck": true,
45
"module": "ESNext",
56
"moduleResolution": "bundler",
67
"allowSyntheticDefaultImports": true

packages/create-vite/template-react-ts/tsconfig.node.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4+
"skipLibCheck": true,
45
"module": "ESNext",
56
"moduleResolution": "bundler",
67
"allowSyntheticDefaultImports": true

packages/create-vite/template-svelte-ts/tsconfig.node.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4+
"skipLibCheck": true,
45
"module": "ESNext",
56
"moduleResolution": "bundler"
67
},

packages/create-vite/template-vue-ts/tsconfig.node.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"composite": true,
4+
"skipLibCheck": true,
45
"module": "ESNext",
56
"moduleResolution": "bundler",
67
"allowSyntheticDefaultImports": true

0 commit comments

Comments
 (0)