Skip to content

Commit

Permalink
Merge pull request #8 from codenotary/1.0.10-rc.3
Browse files Browse the repository at this point in the history
1.0.10 rc.3
  • Loading branch information
Temii authored Mar 3, 2021
2 parents 1d9aa45 + dee8446 commit 9be81b0
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 15 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "immudb-node",
"version": "1.0.10-rc.1",
"version": "1.0.10-rc.3",
"description": "Node ts client for immudb",
"directories": {
"src": "src",
"test": "tests"
},
"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
25 changes: 13 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"compilerOptions": {
"target": "ES2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
"strict": true, /* Enable all strict type-checking options. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"sourceMap": true,
"declaration": true,
"outDir": "dist",
// "allowJs": true,
"baseUrl": "src",
// "moduleResolution": "classic"
"target": "ES2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
"strict": true, /* Enable all strict type-checking options. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"sourceMap": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
// "allowJs": true,
"baseUrl": "src",
// "moduleResolution": "classic"
},
"files": [
"./node_modules/@types/mocha/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import ImmudbClient from '../src/client'

export default ImmudbClient
File renamed without changes.
File renamed without changes.

0 comments on commit 9be81b0

Please sign in to comment.