DefinitelyTyped/types/amazon-cognito-auth-js/tsconfig.json
Scott Escue c7331be0bf [amazon-cognito-auth-js] Creating package (#25622)
* Creating initial type definitions for 'amazon-cognito-auth-js', which include all JSDoc from the ES source code. I'm attempting to follow the same interface naming conventions found in aws/amazon-cognito-identity-js. I've deviated from the standard package template by creating a /test subfolder that contains the conventionally named test file along with a second file that references types from a global namespace.

* Removing tslint interface-name rule override and removing "I" prefix
from interface names.

* Improving tests by ensuring all interface types are explicitly
referenced.

* Removing unnecessary .editorconfig in package directory.
2018-05-09 12:39:54 -07:00

26 lines
579 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"dom",
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/amazon-cognito-auth-js-tests.ts",
"test/amazon-cognito-auth-js-umd-tests.ts"
]
}