UNPKG

@zerochain/sdk

Version:

The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network. It allows developers to perform various operations such as creating and managing allocations, uploading and downloading files, executi

42 lines (35 loc) 1.07 kB
{ "compilerOptions": { "rootDir": "src", "removeComments": false, "allowSyntheticDefaultImports": true, /* Base Options: */ "esModuleInterop": true, "skipLibCheck": true, "target": "esnext", "resolveJsonModule": true, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, /* Strictness */ "strict": true, "noUncheckedIndexedAccess": true, "moduleResolution": "bundler", "module": "esnext", "noEmit": true, /* Output Configuration: */ "outDir": "dist", // Specify the output directory for compiled files "declaration": true, // Generate declaration files (.d.ts) /* If your code runs in the DOM: */ "preserveWatchOutput": true, "jsx": "react-jsx", "allowImportingTsExtensions": true, "exactOptionalPropertyTypes": true, "verbatimModuleSyntax": true, "isolatedDeclarations": true, "baseUrl": ".", "paths": { "@/*": ["src/*"] } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist", "dist-tsc"] }