2020-05-14 12:20:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"typeRoots": [
|
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules/libp2p-ts/types",
|
|
|
|
"./types"
|
|
|
|
],
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
2020-09-21 13:42:53 +00:00
|
|
|
"inlineSources": true,
|
2020-05-14 12:20:39 +00:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"pretty": true,
|
2020-10-05 14:17:04 +00:00
|
|
|
"target": "esnext",
|
2020-05-14 12:20:39 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": false,
|
|
|
|
"esModuleInterop": true,
|
2020-09-21 13:42:53 +00:00
|
|
|
"declarationMap": true,
|
2020-05-14 12:20:39 +00:00
|
|
|
"baseUrl": "."
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
2020-12-07 14:20:00 +00:00
|
|
|
"bundle",
|
|
|
|
"src/test"
|
2020-05-14 12:20:39 +00:00
|
|
|
],
|
|
|
|
"include": ["src/**/*"]
|
2020-10-23 11:01:21 +00:00
|
|
|
}
|