DefinitelyTyped/types/jssha/tsconfig.json
Kannan Goundan 7274ecc119 jssha: add shakeLen, ArrayBuffer; fix tslints
- Upstream library added SHAKE support.  This required adding 'shakeLen'
  to OutputFormatOptions.
- Upstream library added ArrayBuffer support.
- Follow DefinitelyTyped's tslint style.
2018-12-17 01:30:55 -08:00

24 lines
486 B
JSON

{
"files": [
"index.d.ts",
"jssha-tests.ts"
],
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
}
}