@dana-protocols/core
Version:
Library for lixi-handle transaction building
25 lines (24 loc) • 466 B
JSON
{
"compilerOptions": {
/* Language and Environment */
"target": "es2020",
/* ES2020 for bigint, DOM for WebAssemby */
"lib": [
"ES2020",
"DOM"
],
/* Modules */
"module": "CommonJS",
/* Emit */
"noEmit": true,
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true
},
"include": [
"src/**/*",
"tests/**/*"
]
}