diff --git a/packages/addons/.gitignore b/packages/addons/.gitignore new file mode 100644 index 0000000..c3af857 --- /dev/null +++ b/packages/addons/.gitignore @@ -0,0 +1 @@ +lib/ diff --git a/packages/addons/package.json b/packages/addons/package.json index 4028b94..43e5754 100644 --- a/packages/addons/package.json +++ b/packages/addons/package.json @@ -22,13 +22,13 @@ "type": "git", "url": "git+https://github.com/process-analytics/bv-experimental-add-ons.git" }, - "module": "./dist/index.js", - "types": "./dist/index.d.ts", + "module": "./lib/index.js", + "types": "./lib/index.d.ts", "exports": { ".": { "import": { - "types": "./dist/index.d.ts", - "default": "./dist/index.js" + "types": "./lib/index.d.ts", + "default": "./lib/index.js" } }, "./package.json": "./package.json" diff --git a/packages/addons/tsconfig.json b/packages/addons/tsconfig.json index 1ff9318..b6f34f6 100644 --- a/packages/addons/tsconfig.json +++ b/packages/addons/tsconfig.json @@ -55,7 +55,7 @@ // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ - "outDir": "./dist", /* Specify an output folder for all emitted files. */ + "outDir": "./lib", /* Specify an output folder for all emitted files. */ // "removeComments": true, /* Disable emitting comments. */ // "noEmit": true, /* Disable emitting files from a compilation. */ // "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */