diff --git a/package.json b/package.json index 181b6fa..2632557 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "files": [ "out/cli/**", "out/lib/**", - "resources/**", + "out/core/**", + "!out/core/__tests__/**", "README.md", "LICENSE" ], diff --git a/tsconfig.cli.json b/tsconfig.cli.json index 91664d2..016bec3 100644 --- a/tsconfig.cli.json +++ b/tsconfig.cli.json @@ -3,7 +3,7 @@ "compilerOptions": { "module": "CommonJS", "moduleResolution": "node", - "outDir": "out/cli", + "outDir": "out", "rootDir": "src", "declaration": false, "types": ["node"] diff --git a/tsconfig.lib.json b/tsconfig.lib.json index fb6767d..468faa1 100644 --- a/tsconfig.lib.json +++ b/tsconfig.lib.json @@ -3,7 +3,7 @@ "compilerOptions": { "module": "CommonJS", "moduleResolution": "node", - "outDir": "out/lib", + "outDir": "out", "rootDir": "src", "declaration": true, "declarationMap": true,