Skip to content

Commit

Permalink
TypeScript fix by changing package.json; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Temii committed Mar 3, 2021
1 parent b1fed12 commit 1e89d84
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "ledger-compliance-node",
"version": "1.1.8",
"version": "1.1.9",
"description": "Node SDK for codenotary Ledger Compliance",
"directories": {
"src": "src",
"test": "test"
},
"main": "src/client.ts",
"types": "src/client.ts",
"main": "dist/src/client.js",
"types": "dist/src/client.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
Expand Down
11 changes: 7 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"sourceMap": true,
"declaration": true,
"outDir": "dist",
"outDir": "./dist",
"rootDir": "./src",
// "allowJs": true,
"baseUrl": "src",
// "moduleResolution": "classic"
Expand All @@ -19,9 +20,11 @@
],
"include": [
"src/**/*",
"examples/**/*"
, "types/parameters.ts" ],
"examples/**/*",
"types/parameters.ts"
],
"exclude": [
"node_modules"
"node_modules",
"examples"
]
}

0 comments on commit 1e89d84

Please sign in to comment.