UNPKG

hzn-cli

Version:

Open Horizon CLI toolkit helps streamline the process of preparing node agents and perform tasks between orgs environments

33 lines (32 loc) 1.88 kB
{ "compilerOptions": { "target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ "module": "commonjs", /* Specify what module code is generated. */ "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ "resolveJsonModule": true, /* Enable importing .json files */ "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ "sourceMap": true, /* Create source map files for emitted JavaScript files. */ "outDir": "./build", /* Specify an output folder for all emitted files. */ "importHelpers": false, "esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables `allowSyntheticDefaultImports` for type compatibility. */ "forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ "strict": false, /* Enable all strict type-checking options. */ "noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ "skipLibCheck": true, /* Skip type checking all .d.ts files. */ "types": [ "node", "jest" ], "typeRoots": [ "@types", "./node_modules/@types" ] }, "include": [ "./src/**/*.ts" ], "exclude": [ "./src/**/*.test.*" ] }