Files
DefinitelyTyped/types/js-base64/tsconfig.json
Thomas Lent 2b42a4123b Complete definition for js-base64 and update to version 2.3 (#20929)
* Update version number

* Format existing code

* Add name to authors

* Add tslint.json

* Rewrite to match module.d.ts template

* Add missing functions

* Add extendString and related String augmentation

* Correct uriSafe parameter to be optional

* Correct extended functions to be required

* Add new tests and fix global Base64

* Add missing uriSafe parameter to toBase64

* Enable strictNullChecks

* Add missing test case
2017-10-24 11:07:17 -07:00

21 lines
498 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/js-base64-module.test.ts",
"test/js-base64-global.test.ts"
]
}