2020-05-14 15:20:39 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/libp2p-ts/types",
|
|
|
|
],
|
|
|
|
"outDir": "./dist/",
|
2020-12-08 17:13:24 +03:00
|
|
|
"baseUrl": ".",
|
2021-09-08 12:42:30 +03:00
|
|
|
"downlevelIteration": true,
|
2020-05-14 15:20:39 +03:00
|
|
|
"sourceMap": true,
|
2020-09-21 16:42:53 +03:00
|
|
|
"inlineSources": true,
|
2020-05-14 15:20:39 +03:00
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"pretty": true,
|
2021-01-19 15:47:49 +03:00
|
|
|
"target": "ES5",
|
2020-05-14 15:20:39 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
2020-09-21 16:42:53 +03:00
|
|
|
"declarationMap": true,
|
2020-12-08 17:13:24 +03:00
|
|
|
"strict": true,
|
2021-01-19 15:47:49 +03:00
|
|
|
"noImplicitAny": false,
|
2020-12-08 17:13:24 +03:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"noImplicitThis": true,
|
2020-12-18 18:29:03 +03:00
|
|
|
"strictNullChecks": false
|
2020-05-14 15:20:39 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
2020-12-07 17:20:00 +03:00
|
|
|
"bundle",
|
2021-01-19 15:47:49 +03:00
|
|
|
"src/__test__"
|
2020-05-14 15:20:39 +03:00
|
|
|
],
|
|
|
|
"include": ["src/**/*"]
|
2020-10-23 14:01:21 +03:00
|
|
|
}
|