mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
- 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).
24 lines
493 B
JSON
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
|
|
}
|
|
}
|