From ac020a1e676325d1a63c3a44b0066d6e94f9b4a0 Mon Sep 17 00:00:00 2001 From: Ashley Grant Date: Fri, 26 Jan 2018 14:33:51 -0500 Subject: [PATCH] fix(rjs-ts): add baseUrl to tsconfig --- lib/resources/content/tsconfig.template.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/resources/content/tsconfig.template.json b/lib/resources/content/tsconfig.template.json index 6e191c7d5..3e8e73991 100644 --- a/lib/resources/content/tsconfig.template.json +++ b/lib/resources/content/tsconfig.template.json @@ -12,7 +12,8 @@ "experimentalDecorators": true, "allowJs": true, "moduleResolution": "node", - "lib": ["es2017", "dom"] + "lib": ["es2017", "dom"], + "baseUrl": "src", // @endif // @if bundler.id='webpack' "target": "es5",