From 7d6e8bb19b26d120ce0dbb6dafd7c9a710221a02 Mon Sep 17 00:00:00 2001 From: John Ferlito Date: Tue, 8 Oct 2024 18:05:23 +1100 Subject: [PATCH] fix: make sure generator is typescript compiled --- packages/generator-react-native-vector-icons/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/generator-react-native-vector-icons/tsconfig.json b/packages/generator-react-native-vector-icons/tsconfig.json index c17b302ec..065df2083 100644 --- a/packages/generator-react-native-vector-icons/tsconfig.json +++ b/packages/generator-react-native-vector-icons/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "../../tsconfig.json", "compilerOptions": { + "noEmit": false, "rootDir": "./src", "outDir": "./generators" },