DefinitelyTyped/types/parent-package-json/tsconfig.json
Simon McClive 254fb86815 Add types for parent-package-json (#20714)
* Add types for parent-package-json

* Update return type to false and restructure tests

* Remove multiple calls of parent() in tests

* Test optional properties
2017-10-19 11:38:48 -07:00

25 lines
519 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",
"parent-package-json-tests.ts"
]
}