DefinitelyTyped/types/eventsource/tsconfig.json
Akuukis 7004a8e388 [eventsource] compatibility with non-DOM consumers (#36259)
* feat(eventsource): compat with non-dom consumers

* test(eventsource): test dom and void seperately

* chore(eventsource): simplify dom-monkeypatch
2019-07-01 08:28:01 -07:00

27 lines
622 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"dom-monkeypatch.d.ts",
"test/eventsource-dom.test.ts",
"test/eventsource-nodejs.test.ts",
"lib/eventsource-polyfill/index.d.ts"
]
}