summaryrefslogtreecommitdiff
path: root/packages/create-astro
diff options
context:
space:
mode:
authorGravatar Eldemarkki <38920928+Eldemarkki@users.noreply.github.com> 2022-08-20 15:45:23 +0300
committerGravatar GitHub <noreply@github.com> 2022-08-20 20:45:23 +0800
commit439f1d1c0dbc7f90e47ce014205f65fc338f7979 (patch)
tree10a7e9f53d8e7fa2a490dd520e42f5b8c1b4a8c1 /packages/create-astro
parent26150429231770bbeec819458140b46efaf3f503 (diff)
downloadastro-439f1d1c0dbc7f90e47ce014205f65fc338f7979.tar.gz
astro-439f1d1c0dbc7f90e47ce014205f65fc338f7979.tar.zst
astro-439f1d1c0dbc7f90e47ce014205f65fc338f7979.zip
Fix typo in stricter tsconfig (#4394)
Diffstat (limited to 'packages/create-astro')
-rw-r--r--packages/create-astro/tsconfigs/tsconfig.stricter.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/create-astro/tsconfigs/tsconfig.stricter.json b/packages/create-astro/tsconfigs/tsconfig.stricter.json
index 662098fac..2d046f7c0 100644
--- a/packages/create-astro/tsconfigs/tsconfig.stricter.json
+++ b/packages/create-astro/tsconfigs/tsconfig.stricter.json
@@ -19,7 +19,7 @@
"noFallthroughCasesInSwitch": true,
// Force functions designed to override their parent class to be specified as `override`.
"noImplicitOverride": true,
- // Force functions to specify that they can return `undefined` if a possibe code path does not return a value.
+ // Force functions to specify that they can return `undefined` if a possible code path does not return a value.
"noImplicitReturns": true,
// Report an error when a variable is declared but never used.
"noUnusedLocals": true,