mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-15 13:22:46 +00:00
* commit jquery-croper type definitions
commit jquery-croper type definitions
* Update index.d.ts
Update index.d.ts, correcting the version of the cropper and remove unnecessary comments.
* update tsconfig
Adding "strictFunctionTypes": true to tsconfig.json file.
* Update index.d.ts & tslint.json
Removing
declare module "jquery-cropper" {
}, and fixing the Project url
* update "interface-name" property
set "interface-name" property to false in tslint.json
* update tslint
* remove the patch version from index.d.ts
* update rules in tslint.json
* completely remove the patch digit
* remove "v" from MAJOR.MINOR
* Update tslint.json
enabled interface-name property
* adjust interface-name rule
adjust interface-name rule to "interface-name": [true, "never-prefix"]
* remove I from interface name
remove I from interface name
* added new line to last line
added new line to last line
24 lines
479 B
JSON
24 lines
479 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"
|
|
]
|
|
}
|