UNPKG

@hashgraph/hedera-cli

Version:

CLI tool to manage and setup developer environments for Hedera Hashgraph.

17 lines (16 loc) 666 B
{ "compilerOptions": { "target": "ES2020", "module": "CommonJS", "moduleResolution": "node", "outDir": "dist", "rootDir": "src", "allowJs": true, "strict": true, // enable all strict type-checking options "sourceMap": true, // generate corresponding .map file which maps compiled javascript back to typescript "typeRoots": ["./types", "./node_modules/@types"], "skipLibCheck": true, // skip type checking of declaration files }, "include": ["src/**/*"], "exclude": ["hardhat.config.js", "node_modules", "**/*.spec.ts", "**/*.json", "**/__mocks__/**/*", ".husky/**/*"] }