Files
xahau.js/packages/ripple-keypairs/tsconfig.json
Elliot Lee 01e94ad4d6 Release 1.0.0 (#94)
* Add some types
* Add prepublish script
* Ignore linting certain files
  * In the future we should add types and re-enable linting
* Use export = syntax
* Allow consumers to use `import keypairs from 'ripple-keypairs'`
  * See: https://www.typescriptlang.org/docs/handbook/modules.html#export--and-import--require
2020-02-05 16:34:53 -08:00

32 lines
650 B
JSON

{
"compilerOptions": {
// Basic Options
"target": "ES2017",
"module": "CommonJS",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
// Directories
"outDir": "dist",
"rootDir": "src",
// Strict Type-Checking Options
"strict": true,
"noImplicitAny": false,
// Additional Checks
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// Module Resolution Options
"moduleResolution": "node",
// Advanced Options
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*.ts"]
}