DefinitelyTyped/types/chai-fs/tsconfig.json
Dimitar Danailov d72804af05 [@types/chai-fs] Repo has a support for chai-fs. (#29430)
* Repo has a support for chai-fs. My pull request doesn't covers this
combination:
expect(path).to.be.a.file(msg).with.contents.that.match(/xyz/, msg);

* Remove blank line, downgrade typescript version to 2.0.0 and
strictNullChecks are equal to true.

* Fix build issue with typescript verion.

* Remove "v" from version.

* Typescript version should be: 2.2

* fix lint issues
2018-10-09 09:42:11 -07:00

24 lines
488 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-fs-tests.ts"
]
}