From 7191ee4a1485a2e8d4a70cf9e9c291f520ee4080 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sun, 26 Jun 2022 11:48:56 -0400 Subject: [PATCH] Fix built sources paths Re: https://github.com/jridgewell/trace-mapping/issues/11 --- package.json | 3 ++- tsconfig.json | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cf8185b..b22a80e 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,8 @@ "./package.json": "./package.json" }, "files": [ - "dist" + "dist", + "src" ], "engines": { "node": ">=6.0.0" diff --git a/tsconfig.json b/tsconfig.json index 8d08909..ea1e3fe 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, "checkJs": true