Skip to content

Commit

Permalink
Set target to es2019 in default tsconfig.json (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Mar 31, 2021
1 parent b8a8e53 commit 8dc89ba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/shaggy-elephants-sell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

Set target to es2019 in default tsconfig.json
2 changes: 1 addition & 1 deletion packages/create-svelte/template-additions/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2018
ecmaVersion: 2019
},
env: {
browser: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-svelte/template-additions/.eslintrc.ts.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2018
ecmaVersion: 2019
},
env: {
browser: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/create-svelte/template-additions/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es2018",
"target": "es2019",
/**
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using \`import type\` instead of \`import\` for Types.
Expand Down

0 comments on commit 8dc89ba

Please sign in to comment.