truffle-interface-adapter
Version:
A library that provides an adapter layer for Truffle to interace with different types of networks/ledgers.
30 lines (29 loc) • 602 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"lib": ["es2017"],
"paths": {
"web3": [
"../../node_modules/@types/web3/index",
"node_modules/web3/index"
]
},
"rootDir": "lib",
"typeRoots": [
"./typings",
"../../**/node_modules/@types/bn.js",
"../../**/node_modules/@types/mocha"
]
},
"include": [
"./lib/**/*.ts",
"./typings/**/*.d.ts"
]
}