2020-05-14 15:20:39 +03:00
|
|
|
{
|
2022-05-12 17:14:16 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"typeRoots": ["./node_modules/@types", "./node_modules/libp2p-ts/types"],
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"target": "ES5",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
|
|
|
"exclude": ["node_modules", "dist", "bundle"],
|
|
|
|
"include": ["src/**/*"]
|
2020-10-23 14:01:21 +03:00
|
|
|
}
|