From 11a305e3208861b5aac55856360751bd77fad43d Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 28 Jun 2019 22:17:45 -0700 Subject: [PATCH] =?UTF-8?q?zjsunit:=20Simplify=20typeRoots=20path=20(it?= =?UTF-8?q?=E2=80=99s=20relative=20to=20tsconfig.json).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Anders Kaseorg --- frontend_tests/zjsunit/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend_tests/zjsunit/index.js b/frontend_tests/zjsunit/index.js index 533c80adf2..a107ef1401 100644 --- a/frontend_tests/zjsunit/index.js +++ b/frontend_tests/zjsunit/index.js @@ -1,7 +1,7 @@ require('ts-node').register({ project: 'static/js/tsconfig.json', compilerOptions: { - typeRoots: ["node_modules/@types", "../../static/js/js_typings"], + typeRoots: ["node_modules/@types", "./js_typings"], // We don't have webpack to handle es6 modules here so directly // transpile to CommonJS format. module: "commonjs",