mirror of
https://github.com/fluencelabs/fluence-network-environment
synced 2024-12-01 07:00:18 +00:00
35 lines
753 B
JSON
35 lines
753 B
JSON
{
|
|
"compilerOptions": {
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/libp2p-ts/types",
|
|
"./types"
|
|
],
|
|
"outDir": "./dist/",
|
|
"baseUrl": ".",
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"strictFunctionTypes": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"pretty": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"bundle",
|
|
],
|
|
"include": ["src/**/*"]
|
|
}
|