DefinitelyTyped/types/is-empty-object/tsconfig.json
Richie Bendall 5c5ed22e7b feat: Add typings for is-empty-object (#41548)
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-01-15 17:15:38 -05:00

24 lines
496 B
JSON

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