From 5ee273ef059c351b2e13dc91f8fba3d0fd557ae3 Mon Sep 17 00:00:00 2001 From: Blake Embrey Date: Mon, 29 Oct 2018 22:00:37 -0700 Subject: [PATCH] Comments, trailing comma to tests `tsconfig.json` --- tests/tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/tsconfig.json b/tests/tsconfig.json index 9b1aac46d..12fb856f1 100644 --- a/tests/tsconfig.json +++ b/tests/tsconfig.json @@ -2,6 +2,10 @@ "compilerOptions": { "jsx": "react", "noEmit": true, - "typeRoots": ["./typings", "../node_modules/@types"] + // Global type definitions. + "typeRoots": [ + "./typings", + "../node_modules/@types", + ], } }