mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Created host-validation typings. * Fixed tsconfig.json. * Added strictFunctionTypes to true in tsconfig.json. * Changed T[] to Array<T> because it is non-simple type. * Added optional parameters. * Added more tests. * trailing whitespace fix * Fixed Spelling. * Change hosts parameter to opts. * Changed import in test, and added namespace.
24 lines
496 B
JSON
24 lines
496 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",
|
|
"host-validation-tests.ts"
|
|
]
|
|
}
|