mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-01-12 22:43:34 +08:00
* feat: add listener callback to socket-io client subscription functions * chore: fix test * test: add unit tests for socket-io-client * docs: update socket-io client docs * chore: lint fix in client lib src * test: fix flaky pox test
21 lines
423 B
JSON
21 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": false,
|
|
"outDir": "lib",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@stacks/stacks-blockchain-api-types": ["../docs"]
|
|
}
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"typedocOptions": {
|
|
"out": "../docs/.tmp/client"
|
|
}
|
|
}
|