mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added type definitions for my teacher Ruslan Hadyniak JavaScript npm package * removed [strict] option from tsconfig.json * added strictFunctionTypes to tsconfig.json * added tsc >=2.2 restriction to the header * made Response.send() second argument compulsory * undone changes from the previous commit * changed Request.data from FormData | undefined to FormData | null * Removed constructor from Request, modified StateLinks according to the new 1.1.1 package version interface * Changed type definitions according to 1.2 stable version
24 lines
505 B
JSON
24 lines
505 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"strictFunctionTypes": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"webprogbase-console-view-tests.ts"
|
|
]
|
|
}
|