mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
* Add types for js-rijndael library * Added types for mcrypt * Added tests * Added tsconfig.json file * Added tslint.json file * Fix reported issues by npm test js-rijndael command * Removed "I" prefix from ICipher interface * Redundant uses of "declare" keyword were removed * Header was removed from non index.d.ts files * Move interfaces and types inside mcrypt.d.ts * Change Uint8Array data type by array of numbers Co-authored-by: Juan Sebastian Cuello Vergara <jcuello@bancolombia.com.co>
24 lines
492 B
JSON
24 lines
492 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"js-rijndael-tests.ts"
|
|
]
|
|
}
|