mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added multimap type * removed added dependency to package.json * added newline back to bottom of package.json * addressing linter errors * addressing linter errors * addressing linter errors * replaced new-able const with class declaration * Multimap class now implements Multimap interface * declaration file changes
24 lines
489 B
JSON
24 lines
489 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",
|
|
"multimap-tests.ts"
|
|
]
|
|
}
|