mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-04-24 22:52:20 +00:00
* feat: adds typescript types + type tests Signed-off-by: Carson Farmer <carson.farmer@gmail.com> * feat: updates to latest cids release Signed-off-by: Carson Farmer <carson.farmer@gmail.com>
37 lines
799 B
JSON
37 lines
799 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"target": "ES5",
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"peer-id": [
|
|
"./src",
|
|
"../src",
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"mocha",
|
|
"chai"
|
|
],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"./src/index.d.ts",
|
|
],
|
|
"include": [
|
|
"./test/**/*.spec.js"
|
|
]
|
|
} |