From e214ddb8b963b9927dead04eeb8864ae2340b924 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sat, 16 Feb 2019 06:19:40 -0800 Subject: [PATCH] Don't attempt to type check compiled assets --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 641d2b01..94bcd38e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,6 @@ "noEmit": true, "pretty": true }, - "include": ["**/*.js", "**/*.ts", "**/*.tsx"], - "exclude": ["node_modules", "**/*.spec.ts"] + "include": ["js/**/*.js", "js/**/*.ts", "js/**/*.tsx"], + "exclude": ["node_modules", "**/*.spec.ts", "demo/built"] }