From b668c2c781bfd5d51dc2f6e203fbea564cb2846a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sun, 16 Apr 2017 20:03:25 +0100 Subject: [PATCH] build(aio): IDEs should only parse the `src` files I found that VS Code was taking an age to bring up the intellisense for TypeScript source files in the `aio/src` folder. I believe that this is because it was trying to parse all the files in the `aio/content/examples` folder as well, which is not relevant to the web app development. This change restricts the root `aio/tsconfig.json` to only the entry points for the app, the unit tests and e2e tests. --- aio/tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/aio/tsconfig.json b/aio/tsconfig.json index a35a8ee3a4..0589978077 100644 --- a/aio/tsconfig.json +++ b/aio/tsconfig.json @@ -16,5 +16,12 @@ "es2016", "dom" ] - } + }, + "exclude": [ + "content", + "tools", + "aio-builds-setup", + "node_modules", + "scripts" + ] }