mirror of
https://github.com/fluencelabs/js-peer-id
synced 2025-04-24 23:02:33 +00:00
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"
|
||
|
]
|
||
|
}
|