From 74aaaad1ad2d94624dfd4a0d57399bfc34f0b801 Mon Sep 17 00:00:00 2001 From: Andries Smit Date: Tue, 11 Oct 2016 16:10:45 +0200 Subject: [PATCH] Include dijit to tsconfig When using new npm install @types/dojo the dijit file was missing. --- dojo/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dojo/tsconfig.json b/dojo/tsconfig.json index 79b9eb6b27..efcd51a49f 100644 --- a/dojo/tsconfig.json +++ b/dojo/tsconfig.json @@ -13,6 +13,7 @@ "forceConsistentCasingInFileNames": true }, "files": [ - "index.d.ts" + "index.d.ts", + "dijit.d.ts" ] -} \ No newline at end of file +}