DefinitelyTyped/mockdate/tsconfig.json
BrunoLM a1cbc2a5dc Add definitions for mockdate package (#13754)
* Add mockdate package definition file

* Fix mockdate comments

* Apply revision checks on mockdate

Add tslint.json
Enable strciNullChecks
Change definition to export functions intead of default.

* Fix mockdate to export as namespace
2017-01-05 08:30:40 -08:00

21 lines
431 B
JSON

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