Skip to content

Commit

Permalink
fix typings folder
Browse files Browse the repository at this point in the history
  • Loading branch information
itxtoledo committed Aug 9, 2023
1 parent 0f4f38c commit 73e6468
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "@coinsamba/js-exchanges-connector",
"description": "Collection of JavaScript implementations of cryptocurrency exchange APIs",
"version": "2.0.6",
"version": "2.0.7",
"repository": "[email protected]:coinsambacom/js-exchanges-connector.git",
"author": "Gustavo <[email protected]>",
"license": "MIT",
"private": false,
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"types": "./typings/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/index.cjs",
"types": "./typings/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist/**.js*",
"dist/**/*.ts"
"types/**/*.ts"
],
"scripts": {
"prepare": "yarn run --silent build",
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 @@
"composite": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "dist/types",
"declarationDir": "typings",
"outDir": "dist",
"rootDir": "src",
"target": "ES2019",
Expand Down

0 comments on commit 73e6468

Please sign in to comment.