DefinitelyTyped/types/mocha-each/tsconfig.json
Tom Harley de209e9896 Add type declarations for package mocha-each
Add a short and simple `index.d.ts` file for npm package mocha-each,
with use-example tests in file `mocha-each-tests.ts`.

Typings provided in this commit are not very tight: see file
`index.d.ts` for further detail.
2018-02-17 17:44:11 +00:00

24 lines
491 B
JSON

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