Files
DefinitelyTyped/types/js-rijndael/tsconfig.json
Juansecu 5b4d224319 🤖 Merge PR #63148 Add types for js-rijndael library by @Juansecu
* 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>
2022-11-10 17:49:16 -08:00

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"
]
}