DefinitelyTyped/expr-eval/tsconfig.json
Connor Peet 1afa463988 Add typings for expr-eval (#13628)
* Add typings for expr-eval

* Avoid use of Function type

* Use (slightly) stricter typings for expr-eval

* Update with more PR comments

* Disable linter due to bugs, allow CI to pass
2017-01-03 06:25:39 -08:00

21 lines
432 B
JSON

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