From ebf9b0e1cdf2d1cb29d715ab0f9b7baa2e106136 Mon Sep 17 00:00:00 2001 From: Cole Lawrence Date: Tue, 7 Jun 2022 15:28:23 -0400 Subject: [PATCH] dev: Remove unnecessary "files" field in tsconfig which screws with "Move to new file" refactor --- theatre/tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/theatre/tsconfig.json b/theatre/tsconfig.json index fc079ac..f81ae8f 100644 --- a/theatre/tsconfig.json +++ b/theatre/tsconfig.json @@ -15,11 +15,10 @@ } ] }, - "files": ["./globals.d.ts"], "references": [ {"path": "../packages/dataverse"}, {"path": "../packages/react"} ], - "include": ["./*/src/**/*", "./devEnv/**/*"], + "include": ["./globals.d.ts", "./*/src/**/*", "./devEnv/**/*"], "exclude": ["**/node_modules", "**/.*", "**/xeno", "**/dist", "**/.temp"] }