DefinitelyTyped/types/handlebars/tsconfig.json
Sergei Dorogin 7f2ac5d513 Handlebars: improved typings (#23215)
* Handlebars: Added HelperDelegate and HelperOptions interfaces, data field to RuntimeOptions

WIP

* Handlebars:

Added HelperDelegate and HelperOptions interfaces, TemplateDelegate, Template
RuntimeOptions: added data and blockParams fields
registerHelper and registerPartial methods: typed signatures for callbacks (HelperDelegate)

* Handlebars:

SafeString and Utils were moved into Handlebars namespace
fix: added tests into tsconfig.json::files
fix: handlebars-tests.ts: made tslint happy

* Handlebars: updated authors, bumped up version (to the latest 4.0.11)

* small fixes of typos (missing semicolons)
2018-04-10 10:19:30 -07:00

27 lines
566 B
JSON

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