mirror of
https://github.com/fluencelabs/js-libp2p-crypto
synced 2025-03-15 14:21:07 +00:00
31 lines
760 B
JSON
31 lines
760 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": {
|
||
|
"libp2p-crypto": [
|
||
|
"./src",
|
||
|
"../../src",
|
||
|
"../src"
|
||
|
]
|
||
|
},
|
||
|
"types": ["node", "mocha", "chai"],
|
||
|
"noEmit": true,
|
||
|
"forceConsistentCasingInFileNames": true
|
||
|
},
|
||
|
"files": ["./src/index.d.ts",],
|
||
|
"include": ["./test/**/*.spec.js"]
|
||
|
}
|