fix(packages.json)remove no-use declarationg

dev
neeboo 5 years ago
parent d957e44f75
commit 2bc592fb3d
  1. 1
      .travis.yml
  2. 1
      package.json
  3. 11
      packages/harmony-contract/tsconfig.json
  4. 15
      packages/harmony-core/tsconfig.json
  5. 5
      packages/harmony-crypto/tsconfig.json
  6. 1
      packages/harmony-network/package.json
  7. 5
      packages/harmony-network/tsconfig.json
  8. 1
      packages/harmony-transaction/package.json
  9. 9
      packages/harmony-transaction/tsconfig.json
  10. 3
      packages/harmony-utils/tsconfig.json

@ -10,7 +10,6 @@ install:
- yarn install
- yarn global add ts-node
script:
- yarn bootstrap
- yarn build
- yarn test:src
- yarn dist

@ -1,6 +1,7 @@
{
"description": "Root repository for the harmony-sdk-core",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],

@ -2,10 +2,17 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": { "*": ["types/*"] },
"paths": {"*": ["types/*"]},
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
},
"include": ["src", "../../typings/**/*.d.ts"]
"include": ["src", "../../typings/**/*.d.ts"],
"references": [
{"path": "../harmony-account"},
{"path": "../harmony-crypto"},
{"path": "../harmony-utils"},
{"path": "../harmony-transaction"},
{"path": "../harmony-network"}
]
}

@ -2,16 +2,15 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
"rootDir": "src"
},
"include": ["src", "../../typings/**/*.d.ts", "../harmony-utils/src/core.ts"],
"references": [
{ "path": "../harmony-account" },
{ "path": "../harmony-crypto" },
{ "path": "../harmony-utils" },
{ "path": "../harmony-network" },
{ "path": "../harmony-transaction" },
{ "path": "../harmony-contract" }
{"path": "../harmony-account"},
{"path": "../harmony-crypto"},
{"path": "../harmony-utils"},
{"path": "../harmony-network"},
{"path": "../harmony-transaction"},
{"path": "../harmony-contract"}
]
}

@ -2,9 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
"rootDir": "src"
},
"include": ["src", "../../typings/**/*.d.ts"],
"references": [{ "path": "../harmony-utils" }]
"references": [{"path": "../harmony-utils"}]
}

@ -18,7 +18,6 @@
"author": "neeboo@firestack.one",
"license": "ISC",
"dependencies": {
"@harmony-js/core": "0.0.60",
"@harmony-js/utils": "0.0.60",
"cross-fetch": "^3.0.2",
"mitt": "^1.1.3",

@ -2,9 +2,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
"rootDir": "src"
},
"include": ["src", "../../typings/**/*.d.ts"],
"references": [{ "path": "../harmony-utils" }]
"references": [{"path": "../harmony-utils"}]
}

@ -18,7 +18,6 @@
"author": "neeboo@firestack.one",
"license": "ISC",
"dependencies": {
"@harmony-js/core": "0.0.60",
"@harmony-js/crypto": "0.0.60",
"@harmony-js/network": "0.0.60",
"@harmony-js/utils": "0.0.60"

@ -2,13 +2,12 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
"rootDir": "src"
},
"include": ["src", "../../typings/**/*.d.ts"],
"references": [
{ "path": "../harmony-utils" },
{ "path": "../harmony-crypto" },
{ "path": "../harmony-network" }
{"path": "../harmony-utils"},
{"path": "../harmony-crypto"},
{"path": "../harmony-network"}
]
}

@ -2,8 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declarationDir": "dist"
"rootDir": "src"
},
"include": ["src", "../../typings/**/*.d.ts"]
}

Loading…
Cancel
Save