mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 19:55:51 +00:00
fix all errors resulting from running 'npx lerna bootstrap', hoist github actions to top, hoist vscode config to top
This commit is contained in:
30000
packages/xrpl/package-lock.json
generated
30000
packages/xrpl/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,7 @@
|
||||
{
|
||||
"extends": "../tsconfig.build.json",
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src"
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*.ts"
|
||||
]
|
||||
"include": ["./src/**/*.ts"]
|
||||
}
|
||||
|
||||
@@ -1,4 +1,18 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"include": ["src/**/*.ts"]
|
||||
}
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./src"
|
||||
},
|
||||
"include": ["./src/**/*.ts"],
|
||||
"references": [
|
||||
{
|
||||
"path": "../ripple-address-codec/tsconfig.json"
|
||||
},
|
||||
{
|
||||
"path": "../ripple-binary-codec/tsconfig.json"
|
||||
},
|
||||
{
|
||||
"path": "../ripple-keypairs/tsconfig.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"include": [
|
||||
"./src/**/*.ts",
|
||||
"./test/**/*.ts",
|
||||
"./snippets/src/**/*.ts",
|
||||
".prettierrc.js",
|
||||
".eslintrc.js",
|
||||
"jest.config.js"
|
||||
]
|
||||
"extends": "./tsconfig.json",
|
||||
"include": [
|
||||
"./src/**/*.ts",
|
||||
"./test/**/*.ts",
|
||||
"./snippets/src/**/*.ts",
|
||||
".prettierrc.js",
|
||||
".eslintrc.js",
|
||||
"jest.config.js"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,16 +1,11 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"pretty": true,
|
||||
"target": "es6",
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"outDir": "./dist/npm",
|
||||
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"noImplicitAny": false,
|
||||
"noUnusedLocals": true,
|
||||
|
||||
@@ -53,6 +53,10 @@ function getDefaultConfiguration() {
|
||||
'https-proxy-agent': false,
|
||||
},
|
||||
extensions: ['.js', '.json'],
|
||||
// We don't want to webpack any of the local dependencies:
|
||||
// ripple-address-codec, ripple-binary-codec, ripple-keypairs, which are
|
||||
// symlinked together via lerna
|
||||
symlinks: false,
|
||||
fallback: {
|
||||
buffer: require.resolve('buffer/'),
|
||||
assert: require.resolve('assert/'),
|
||||
|
||||
Reference in New Issue
Block a user