From 1567b689b9516a1ea47a609b1ee844b8910a86ee Mon Sep 17 00:00:00 2001 From: Tau Date: Wed, 9 Oct 2019 15:51:43 -0400 Subject: [PATCH] Add local typings directory to project --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 93f9dca..26045ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,8 @@ "moduleResolution": "node", "outDir": "./bin/", "strictNullChecks": true, - "target": "esnext" + "target": "esnext", + "typeRoots": ["./node_modules/@types", "./types"] }, "include": ["./src/"], "exclude": ["./src/**/*.test.ts"]