Files
stacks-blockchain-api/client/tsconfig.json
Matthew Little 5634522132 feat: add listener callback to socket-io client subscription functions (#1799)
* 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
2024-01-05 16:41:32 +01:00

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"
}
}