DefinitelyTyped/types/egg-mock/tsconfig.json
Nathan Shively-Sanders 20573fa26d
egg-mock: set noImplicitAny: false (#34240)
egg-mock 3.* has a dependency on egg-logger 1.7.1, which has an implicit
any error in its d.ts.

Until somebody updates egg-mock types, I think it's fine to change this
package to not give implicit-any errors.
2019-03-27 06:35:16 -07:00

24 lines
491 B
JSON

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