freelii-passkey-kit
Version:
A helper library for creating and using smart wallet accounts on the Stellar blockchain.
25 lines • 609 B
JSON
{
"compilerOptions": {
"outDir": "./types",
// Enable latest features
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
// Bundler mode
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"declaration": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"strictNullChecks": true,
},
"include": [
"src",
],
}