Files
DefinitelyTyped/types/chai-uuid/tsconfig.json
Harm van der Werf 4ed4461b26 Added type definitions for Chai UUID (#25227)
* Added types for Chai UUID

* Fixed the test file

* Removed the message parameter because it's not implemented in the plugin

* Removed an empty namespace as it was unnecessary
2018-04-24 17:06:44 -07:00

24 lines
490 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",
"chai-uuid-tests.ts"
]
}