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