mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
* 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
21 lines
498 B
JSON
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"
|
|
]
|
|
}
|