mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
* WIP remove pools * added logs * update checksums and logs * Updating CodeExamples.md * remove console logs * remove unused params, simplify test folder structure * contracts folder simplification, remove ss contract methods * path fix * remove more "staking" code * put back `removeApprovedToken()` * remove redundant and unused test commands * test fix, auto-fix & auto-format * consistent specific imports * readme updates * remove addDispenserContract method * remove tokens subfolder from contracts * update js docs and put back addDispenserContract * use new digest for algorthms * update nft getData to fix failing unit test * replace pools with fre in buyDatatokenBatch * use proper exchange ids * increase allowance * fix buyBatch test and deploy issues from testcontracthandler Co-authored-by: GitHub Actions Bot <> Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
20 lines
485 B
JSON
20 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ESNext", "dom"],
|
|
"declaration": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"removeComments": false,
|
|
"experimentalDecorators": true,
|
|
"preserveConstEnums": true,
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"declarationDir": "./dist/"
|
|
},
|
|
"include": ["src/**/*", "test/**/*"]
|
|
}
|