DefinitelyTyped/types/plupload/tsconfig.json
Matt Gibbs 9616735d8e Overhaul typings per feedback
This gets rid of the need to turn off the noImplicitAny check for the
plupload typings.  I've attempted to fix some remaining issues that the
existing tests had after "correcting" all of this.

@paulvanbrenk @patrickbussmann
2018-04-04 21:21:55 -04:00

24 lines
508 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"plupload-tests.ts"
]
}