309d8115c3
Replacing the Node EventEmitter with Mitt caused more problems than anticipated for end users due to the API differences and the amount of people who relied on the EventEmitter API. In hindsight this clearly should have been explored more and then released as a breaking v4. This commit rolls us back to the built in Node EventEmitter library which we can release to get everyone back on stable builds. We can then consider our approach to migrating to Mitt and when we do do that we can release it as a breaking change and properly document the migration strategy and approach.
14 lines
207 B
JSON
14 lines
207 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"outDir": "./lib",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"module": "CommonJS"
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|