DefinitelyTyped/types/sparql-http-client/tsconfig.json
Tomasz Pluskiewicz a136c9f181 refactor: sparql-http-client updated to use correct exports (#39966)
* fix: sparql-http-client should use built-in fetch

* fix: disable tslint rule to accommodate for commonjs default export

* revert default export

* change export syntax
2019-10-29 14:00:37 -07:00

25 lines
524 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"webworker"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"sparql-http-client-tests.ts"
]
}