From 8b0cb4c22f3f16afa0b50ae229a77003a09f53da Mon Sep 17 00:00:00 2001 From: km1chno Date: Wed, 11 Sep 2024 11:38:04 +0200 Subject: [PATCH] fix: install typescript in eslint recipe --- src/recipes/lint.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/recipes/lint.ts b/src/recipes/lint.ts index 0b4593e..0a6503e 100644 --- a/src/recipes/lint.ts +++ b/src/recipes/lint.ts @@ -24,6 +24,7 @@ const execute = async ( // eslint@9 introduces new configuration format that is not supported by widely used plugins yet, // so we stick to ^8 for now. await toolbox.dependencies.addDev('eslint', context, { version: '^8' }) + await toolbox.dependencies.addDev('typescript', context) await toolbox.dependencies.addDev('@react-native/eslint-config', context) const withPrettier =