ecash-agora
Version:
Library for interacting with the eCash Agora protocol
19 lines (18 loc) • 494 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/**/*"]
}