DefinitelyTyped/types/jsdom-global/tsconfig.json
Max Boguslavsky 54d92f0f13 added type for jsdom-global (#38808)
* added jsdom-global

* fixed interface errors

* corrected path for existing typing

* fixed import; fixed export

* fixed version

* fixed tests

* upped version

* corrected version

* added package with ts version

* removed types

* reworked imports

* added type mappings

* fixed formatting
2019-10-02 15:00:40 -07:00

28 lines
594 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"paths": {
"parse5": [ "parse5/v4" ]
},
"esModuleInterop": true,
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"jsdom-global-tests.ts"
]
}