Skip to content

Commit

Permalink
fix(create-vite): skip lib check in tsconfig templates (#12591)
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky committed Mar 30, 2023
1 parent 8582e2d commit a59914c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/create-vite/template-preact-ts/tsconfig.node.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-react-ts/tsconfig.node.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-svelte-ts/tsconfig.node.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler"
},
Expand Down
1 change: 1 addition & 0 deletions packages/create-vite/template-vue-ts/tsconfig.node.json
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
Expand Down

0 comments on commit a59914c

Please sign in to comment.