crypto-wallet-core
Version:
A multi-currency support library for address derivation, private key creation, and transaction creation
30 lines (29 loc) • 615 B
JSON
{
"compilerOptions": {
"lib": ["ES2022", "DOM"],
"noImplicitAny": false,
"removeComments": true,
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"esModuleInterop": true,
"target": "ES2022",
"typeRoots": ["./node_modules/@types"],
"baseUrl": ".",
"paths": {
"*": ["*", "./src/*"]
},
"outDir": "ts_build",
"sourceMap": true
},
"include": [
"./src/**/*.ts",
"./test/**/*.ts"
],
"exclude": [
"node_modules"
]
}