DefinitelyTyped/types/roarr/tsconfig.json
psaxton 9c114e3ed5 Adding type mappings for the logging library ROARR.js (#33753)
* Adding type mappings for the logging library ROARR.js

See Issue #33751

Tests work and lint reports 0 problems

* Fix tsconfig settings
2019-03-11 13:00:27 -07:00

24 lines
472 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",
"roarr-tests.ts"
]
}