Files
DefinitelyTyped/types/localizejs-library/tsconfig.json
Samer Albahra 3478eb879d [localizejs-library] Fix problems with typings (specifically callback parameters) (#20243)
* Fix problems in LocalizeJS Library typings

This resolves the `off` method incorrectly being named `on` and also fixes all instances of callbacks which lacked the parameters used.

* Fix incorrect comment

* Fix input for translate to allow HTML elements
2017-10-09 16:07:20 -07:00

24 lines
517 B
JSON

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