mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-17 22:32:45 +00:00
* add @types/async-eventemitter * fix tests for async-eventemitter (npm test) * fix def for listeners * extends events/EventEmitter * add jsdoc * export as namespace * formatting * fix signature
24 lines
499 B
JSON
24 lines
499 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-eventemitter-tests.ts"
|
|
]
|
|
}
|