1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

stop removing jsdocs (#1254)

This commit is contained in:
mihaisc 2022-02-07 18:03:14 +02:00 committed by GitHub
parent 3dda9a6709
commit e087b3e29b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,16 +4,22 @@
"moduleResolution": "node", "moduleResolution": "node",
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"lib": ["ESNext", "dom"], "lib": [
"ESNext",
"dom"
],
"declaration": true, "declaration": true,
"module": "ESNext", "module": "ESNext",
"target": "ESNext", "target": "ESNext",
"removeComments": true, "removeComments": false,
"experimentalDecorators": true, "experimentalDecorators": true,
"preserveConstEnums": true, "preserveConstEnums": true,
"outDir": "./dist/", "outDir": "./dist/",
"sourceMap": true, "sourceMap": true,
"declarationDir": "./dist/" "declarationDir": "./dist/"
}, },
"include": ["src/**/*", "test/**/*"] "include": [
} "src/**/*",
"test/**/*"
]
}