DefinitelyTyped/types/amplifier/tsconfig.json
superheri 58bf05fae3 Add types for Amplifier (#34871)
* Made types from amplify usable for amplifier (the nodejs version of amplify)

* Fix tests

* Set tsconfig as asked in pull request requirements

* Revert tsconfig cnanges since it breaks tests

* Bring back strictness

* Fix tslint errors

* Fix callback function params
2019-04-22 13:15:09 -07:00

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