Skip to content

Commit

Permalink
Merge pull request #147 from thornbill/move-dist-lib
Browse files Browse the repository at this point in the history
Move output directory to lib
  • Loading branch information
thornbill committed Mar 15, 2022
2 parents 858eab8 + fa8d63b commit 9a94f5e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist
generated-client
lib
node_modules
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
coverage
dist
lib
node_modules
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"keywords": [
"jellyfin"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"license": "MPL-2.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"target": "ES5",
"declaration": true,
"noImplicitAny": true,
"outDir": "dist"
"outDir": "lib"
},
"typedocOptions": {
"entryPoints": [
Expand Down

0 comments on commit 9a94f5e

Please sign in to comment.