From 1b573fb766cb665b47f3ba1f32ac3390706f71fc Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Wed, 22 Sep 2021 09:38:12 +0200 Subject: [PATCH] Fixed the build --- examples/basic-dom/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/basic-dom/tsconfig.json b/examples/basic-dom/tsconfig.json index a8849c8..4210fbd 100644 --- a/examples/basic-dom/tsconfig.json +++ b/examples/basic-dom/tsconfig.json @@ -1,4 +1,5 @@ { + "extends": "../../tsconfig.base.json", "compilerOptions": { "esModuleInterop": true, "jsx": "react", @@ -7,5 +8,6 @@ "composite": true, "noEmit": true }, - "files": ["index.tsx", "Scene.tsx", "useDrag.ts"] + "files": ["index.tsx", "Scene.tsx", "useDrag.ts"], + "references": [{"path": "../../theatre"}] }