mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* add types for async-redis npm module * fix fix declarations file header, ts config, remove package.json * fix current version of npm module Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com> * replace es6 module import with commonJs require Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com> * Undo commit "replace es6 module import with commonJs require" * use CommonJS Auto-Imports Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com> * remove some options from tsconfig.json * set noEmit true * set forceConsistentCasingInFileNames true * add types option to tsconfig.json Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>
17 lines
376 B
JSON
17 lines
376 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", "async-redis-tests.ts"]
|
|
}
|