Files
DefinitelyTyped/types/cqrs-domain/tsconfig.json
Steven Weiß aa574d1aee Added TypeScript mappings for cqrs-domain. (#21905)
* Added TypeScript mappings for cqrs-domain.

* Added tests.

* Removed package.json to prevent build errors on DefinitelyTyped CI server.

* Fixed build errors.

* Fixed lots of lint findings.

* remove declare module
2018-01-02 12:47:16 -08:00

24 lines
492 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",
"cqrs-domain-tests.ts"
]
}