DefinitelyTyped/types/mocha-prepare/tsconfig.json
Sorin Sandru 2e9ba8c063 Created typings for mocha-prepare (#38727)
* mocha-prepare

Created typings for mocha-prepare.

* Fixed Export issue

Fixed export

* Fixed onUnprepare parameter

Changed onUnprepare parameter to optional.
2019-10-02 13:34:54 -07:00

24 lines
494 B
JSON

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