From 3a48202e6c38574dabc65b77cb4904ea2945ef77 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sun, 26 Jun 2022 11:35:26 -0400 Subject: [PATCH] Fix builts sources paths Re: https://github.com/jridgewell/trace-mapping/issues/11 --- package.json | 1 + tsconfig.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 00cf2a4..3b043ed 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "./package.json": "./package.json" }, "files": [ + "src", "dist" ], "engines": { diff --git a/tsconfig.json b/tsconfig.json index 8b31413..88d024d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,6 @@ "declaration": true, "allowSyntheticDefaultImports": true, "declarationDir": "dist/types", - "outDir": "dist/lib", "noUnusedLocals": true, "noUnusedParameters": true, },