Skip to content

Commit 9be81b0

Browse files
authored
Merge pull request #8 from codenotary/1.0.10-rc.3
1.0.10 rc.3
2 parents 1d9aa45 + dee8446 commit 9be81b0

File tree

5 files changed

+19
-15
lines changed

5 files changed

+19
-15
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "immudb-node",
3-
"version": "1.0.10-rc.1",
3+
"version": "1.0.10-rc.3",
44
"description": "Node ts client for immudb",
55
"directories": {
66
"src": "src",
77
"test": "tests"
88
},
9-
"main": "src/client.ts",
10-
"types": "src/client.ts",
9+
"main": "dist/src/client.js",
10+
"types": "dist/src/client.d.ts",
1111
"scripts": {
1212
"prepare": "npm run build",
1313
"build": "tsc",

tsconfig.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
4-
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
5-
"strict": true, /* Enable all strict type-checking options. */
6-
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
7-
"skipLibCheck": true, /* Skip type checking of declaration files. */
8-
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
9-
"sourceMap": true,
10-
"declaration": true,
11-
"outDir": "dist",
12-
// "allowJs": true,
13-
"baseUrl": "src",
14-
// "moduleResolution": "classic"
3+
"target": "ES2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
4+
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
5+
"strict": true, /* Enable all strict type-checking options. */
6+
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
7+
"skipLibCheck": true, /* Skip type checking of declaration files. */
8+
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
9+
"sourceMap": true,
10+
"declaration": true,
11+
"outDir": "./dist",
12+
"rootDir": "./src",
13+
// "allowJs": true,
14+
"baseUrl": "src",
15+
// "moduleResolution": "classic"
1516
},
1617
"files": [
1718
"./node_modules/@types/mocha/index.d.ts",

types/index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import ImmudbClient from '../src/client'
2+
3+
export default ImmudbClient
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)