From da2b9cc9ca00f5b1c119d4b32372b1bb94abdd16 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Mon, 16 Nov 2020 10:40:24 -0500 Subject: [PATCH] Publish types and sourcemaps Enables publishing types and sourcemap files to NPM. --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index db684187..e29963ee 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,8 @@ { "compilerOptions": { + "declaration": true, + "declarationMap": true, + "sourceMap": true, "target": "es2018", "module": "commonjs", "strict": true,