decentralized-internet
Version:
An NPM library of programs to create decentralized web and distributed computing projects
32 lines (31 loc) • 714 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2017",
"lib": ["ES2017"],
"jsx": "react",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"outDir": "lib",
"rootDir": "src"
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}