DefinitelyTyped/types/html-parser/tsconfig.json
Max Boguslavsky 3779419226 Added type for html-parser (#38940)
* - added draft type for html-parser

* fixed dom reference in package; corrected options interface; rewrote tests

* reverted prev commit

* corrected options interface; introduced dom lib into global space; corrected tests params

* reverted prev commit

* - added some tests.

* added @type/html-parses

* corrected formatting

* corrected formatting

* corrected errors after namespace correction

* removed namespace declaration

* corrected export declarations

* fixed comments

* corrected formatting

* rewrote args so that they will be self-explanatory

* corrected formatting
2019-10-09 11:02:22 -07:00

24 lines
492 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",
"html-parser-tests.ts"
]
}