@xcapit/shelter-sdk
Version:
SDK for Shelter smart contracts on Stellar
30 lines (29 loc) • 738 B
JSON
{
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
// Enable latest features
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"declaration": true,
// "emitDeclarationOnly": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"strictNullChecks": true,
"esModuleInterop": true
},
"include": [
"src",
],
}