DefinitelyTyped/types/humps/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 083ee84eb3
update(humps): v2 update and UMD module correction (#44762)
- v2 bump
- export added
-tests amended to reflect global and commonjs usage
- maintainer added

Thanks!
2020-05-19 15:51:56 -07:00

21 lines
489 B
JSON

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