DefinitelyTyped/types/rangy/tsconfig.json
Maxime Kjaer d06eee332a Add Rangy Class Applier module to Rangy (#18259)
* Add Rangy Class Applier module type definition

* Make RangyClassApplier extend the options

And allow strings in tagName

* Remove reference path in test file

This should hopefully Make the Build Green Again

* Remove call to unexisting method

This was meant for another PR, and I got things a bit mixed up... (I'll
submit the other PR that adds the missing rangy-core properties when I
have a bit more experience with the whole process of writing type
declarations)

* Incorporate previous contributor's feedback

Thanks for the great feedback 😃
2017-07-21 10:03:22 -07:00

25 lines
504 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"rangy-classapplier.d.ts",
"rangy-tests.ts"
]
}