Files
stacks.js/tsconfig.build.json
janniks 25e326a8df feat!: Add PoX-2 methods to @stacks/stacking client (#1354)
BREAKING CHANGE:
Remove the getBTCAddress method, since it does not work with modern BTC addresses.
A StackingClient will now automatically detect which PoX version to use for Stacking.
Adds the following PoX Stacking methods to the StackingClient: `stackExtend`, `stackIncrease`, `delegateStackExtend`, `delegateStackIncrease`, `stackAggregationCommitIndexed`, `stackAggregationIncrease`.
Adds the following helper methods to the StackingClient: `getAccountExtendedBalances`, `getAccountBalanceLocked`, `getDelegationStatus`, `getRewardSet`.
2022-11-23 17:13:50 +01:00

36 lines
886 B
JSON

{
"compilerOptions": {
"noEmit": true,
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"lib": [
"dom",
"esnext"
],
"importHelpers": false,
"declaration": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"pretty": true,
"removeComments": true,
"noImplicitAny": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"alwaysStrict": true,
"stripInternal": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": false,
"skipLibCheck": true,
"esModuleInterop": true,
"strictNullChecks": true
}
}