From 70ddcce76f44659d5a2bca36c4f9db9ce881b8f3 Mon Sep 17 00:00:00 2001 From: Satyajit Sahoo Date: Sun, 7 Mar 2021 18:14:11 +0100 Subject: [PATCH] chore: add a tsconfig to workaround expo-cli adding its own --- example/tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/example/tsconfig.json b/example/tsconfig.json index facc3ec3..1e654637 100644 --- a/example/tsconfig.json +++ b/example/tsconfig.json @@ -1,5 +1,17 @@ { "extends": "../tsconfig", + "references": [ + { "path": "../packages/bottom-tabs" }, + { "path": "../packages/core" }, + { "path": "../packages/devtools" }, + { "path": "../packages/drawer" }, + { "path": "../packages/elements" }, + { "path": "../packages/material-bottom-tabs" }, + { "path": "../packages/material-top-tabs" }, + { "path": "../packages/native" }, + { "path": "../packages/routers" }, + { "path": "../packages/stack" }, + ], "compilerOptions": { // Avoid expo-cli auto-generating a tsconfig }