Files
DefinitelyTyped/types/braintree-web-drop-in/tsconfig.json
Saoud Rizwan 9e274b5be1 Add type definitions for braintree-web-drop-in (#35759)
* Add type definitions for braintree-web-drop-in

* Fix ts-lint errors

* Add PaymentMethodPayload interface

* Remove global.d.ts and replace `HTMLElement` with `any`; remove tslint rules

* Add global types to braintree-web-drop-in and relevant tests

* Fix typo in documentation for braintree-web-drop-in
2019-06-20 14:09:35 -07:00

25 lines
542 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/braintree-web-drop-in-global.test.ts",
"test/braintree-web-drop-in-module.test.ts"
]
}