DefinitelyTyped/types/handlebars/tsconfig.json
Timothy Lindvall de10772b88 Update typings for handlebars
- Add optional options param to parse. This reflects the options param
in the Handlebars source code. Also defines interface ParseOptions,
which includes the options that have an effect on Handlebars parsing.
- Fix duplicate properties in tsconfig.json.
- Fix typo in import in handlebars-tests.ts.

Reference Source:
https://github.com/wycats/handlebars.js/blob/master/lib/handlebars/compiler/base.js#L11

Non-breaking change (new param is optional).
2018-12-13 14:55:03 -08:00

24 lines
493 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
}
}