From 4475343443e2ddae3df4792e79966ade83370cd8 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Fri, 8 Mar 2019 23:19:26 +0000 Subject: [PATCH] Fix tsconfig Adding the rootDir option means that the output files will be in `lib/` instead of `lib/src`. I also removed the redundant lib settings, given that we now have an es2105 target. --- js/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/tsconfig.json b/js/tsconfig.json index 12b5609..980389e 100644 --- a/js/tsconfig.json +++ b/js/tsconfig.json @@ -2,12 +2,13 @@ "compilerOptions": { "resolveJsonModule": true, "noImplicitAny": false, - "lib": ["dom", "es5", "es2015.promise", "es2015.iterable"], + "lib": ["dom", "es2015"], "strictNullChecks": true, "module": "commonjs", "moduleResolution": "node", "target": "es2015", "outDir": "lib", + "rootDir": "src", "skipLibCheck": true, "strictNullChecks": false, "inlineSourceMap": true