Skip to content

Commit

Permalink
fix lib, module, and target to not override the tsconfig they generat…
Browse files Browse the repository at this point in the history
…e by default (#4893)

Co-authored-by: oe.kazuma <oe.kazuma@a-tm.co.jp>
  • Loading branch information
oekazuma and oekazuma authored May 13, 2022
1 parent a811a8a commit eaa872b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .changeset/rude-masks-kneel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

fix lib, module, and target to not override the tsconfig they generate by default
6 changes: 1 addition & 5 deletions packages/create-svelte/shared/+checkjs/jsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2020", "DOM"],
"moduleResolution": "node",
"module": "es2020",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2020"
"strict": true
}
}
6 changes: 1 addition & 5 deletions packages/create-svelte/shared/+typescript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["es2020", "DOM"],
"moduleResolution": "node",
"module": "es2020",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es2020"
"strict": true
}
}

0 comments on commit eaa872b

Please sign in to comment.