mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
* 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
25 lines
542 B
JSON
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"
|
|
]
|
|
}
|